Intel(R) Threading Building Blocks Doxygen Documentation
version 4.2.3
|
Go to the source code of this file.
Namespaces | |
tbb | |
The graph class. | |
tbb::internal | |
Identifiers declared inside namespace internal should never be used directly by client code. | |
Functions | |
parallel_for_each | |
template<typename Iterator , typename Function > | |
void | tbb::parallel_for_each (Iterator first, Iterator last, const Function &f, task_group_context &context) |
Calls function f for all items from [first, last) interval using user-supplied context. More... | |
template<typename Range , typename Function > | |
void | tbb::parallel_for_each (Range &rng, const Function &f, task_group_context &context) |
Calls function f for all items from rng using user-supplied context. More... | |
template<typename Range , typename Function > | |
void | tbb::parallel_for_each (const Range &rng, const Function &f, task_group_context &context) |
Calls function f for all items from const rng user-supplied context. More... | |
template<typename Iterator , typename Function > | |
void | tbb::parallel_for_each (Iterator first, Iterator last, const Function &f) |
Uses default context. More... | |
template<typename Range , typename Function > | |
void | tbb::parallel_for_each (Range &rng, const Function &f) |
Uses default context. More... | |
template<typename Range , typename Function > | |
void | tbb::parallel_for_each (const Range &rng, const Function &f) |
Uses default context. More... | |