table of contents
__gnu_parallel::identity_selector(3) | Library Functions Manual | __gnu_parallel::identity_selector(3) |
NAME¶
__gnu_parallel::identity_selector -
Selector that just returns the passed iterator.
SYNOPSIS¶
Inherits __gnu_parallel::generic_for_each_selector< It >.
Public Member Functions¶
template<typename Op > It operator() (Op o, It i)
Public Attributes¶
It finish_iterator
Detailed Description¶
template<typename It> struct __gnu_parallel::identity_selector< It >¶
Selector that just returns the passed iterator.
Definition at line 254 of file for_each_selectors.h.
Member Function Documentation¶
template<typename It> template<typename Op > It __gnu_parallel::identity_selector< It >::operator() (Op o, It i) [inline]¶
Functor execution. Parameters:
o Operator (unused).
i Iterator referencing object.
i Iterator referencing object.
Returns:
Passed iterator.
Definition at line 262 of file for_each_selectors.h.
Member Data Documentation¶
template<typename It > It __gnu_parallel::generic_for_each_selector< It >::finish_iterator [inherited]¶
Iterator on last element processed; needed for some algorithms (e. g. std::transform()).
Definition at line 48 of file for_each_selectors.h.
Author¶
Generated automatically by Doxygen for libstdc++ from the source code.
19 Jun 2018 | libstdc++ |