Home ⌂Doc Index ◂Up ▴
Intel(R) Threading Building Blocks Doxygen Documentation  version 4.2.3
Requirements on parallel_do body

Class Body implementing the concept of parallel_do body must define:

  • B::operator()(
    cv_item_type item,
    parallel_do_feeder<item_type>& feeder
    ) const
    OR
    B::operator()( cv_item_type& item ) const
    Process item. May be invoked concurrently for the same this but different item.
  • item_type( const item_type& )
    Copy a work item.
  • ~item_type()
    Destroy a work item

Copyright © 2005-2020 Intel Corporation. All Rights Reserved.

Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries.

* Other names and brands may be claimed as the property of others.