Lines Matching refs:body
7 Previously, the body of the algorithm or Flow Graph node needed to be a Function Object (see `C++ S…
10 Now the body needs to meet the more relaxed requirements of being Callable (see `C++ Standard Calla…
13 * **Pointers to member functions** that you can use as the body of the algorithm or the Flow Graph …
14 * **Pointers to member objects** work as the body of the algorithm or parallel construct
70 …or``, it was required to provide a ``Function Object`` as the algorithm's body. This Function Obje…
81 // Define a lambda function as the body of the parallel_for loop
94 Now with C++17, you can directly utilize a pointer to ``range.iterate()`` as the body of the algori…
117 …ard function ``std::invoke(&StrideRange::iterate, range)`` to execute the body. It is the equivale…
165 Before C++17, the ``function_node`` in the Flow Graph required the body to be a Function Object. A …
167 With C++17, you can use ``std::invoke`` with a pointer to the member number directly as the body.
186 // Use a member function pointer to the number member of the Object struct as the body
189 // Use the number_processor lambda function as the body