#include <algorithm>
Go to the source code of this file.
|
| template<class InputIt , class OutputIt , class Pred , class Fct > |
| void | Base::transform_if (InputIt first, InputIt last, OutputIt dest, Pred pred, Fct transform) |
| |
| template<class Cont , class OutputIt , class Pred , class Fct > |
| void | Base::transform_if (Cont container, OutputIt dest, Pred pred, Fct transform) |
| |
| template<typename Container , typename OutputIt , typename BinaryFunction > |
| void | Base::transform (Container container, OutputIt out, BinaryFunction function) |
| |
| template<typename Container , typename T , typename BinaryFunction > |
| T | Base::accumulate (Container container, T init, BinaryFunction function) |
| |