transform.hpp
Go to the documentation of this file.
7 /*************************************************************************************************/
20 /*************************************************************************************************/
24 /*************************************************************************************************/
32 /*************************************************************************************************/
63 inline OutputIterator transform(const InputRange& range, OutputIterator result, UnaryOperation op)
74 template <class InputIterator1, class InputIterator2, class OutputIterator, class BinaryOperation>
75 inline OutputIterator transform(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2,
88 inline OutputIterator transform(InputRange1& range1, InputIterator2 first2, OutputIterator result,
106 /*************************************************************************************************/
110 /*************************************************************************************************/
114 /*************************************************************************************************/
Definition: functional.hpp:26 OutputIterator transform(const InputRange1 &range1, InputIterator2 first2, OutputIterator result, BinaryOperation binary_op) transform implementation Definition: transform.hpp:100 OutputIterator transform(InputIterator first, InputIterator last, OutputIterator result, UnaryOperation op) transform implementation Definition: transform.hpp:39 |