#include <debug/debug.h>Include dependency graph for stl_numeric.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Namespaces | |
| namespace | std |
Defines | |
| #define | STLNUMERICH |
Functions | |
| template<typename InputIterator, typename Type> | |
| Type | std::accumulate (InputIterator first, InputIterator last, Type init) |
| Accumulate values in a range. | |
| template<typename InputIterator, typename Type, typename BinaryOperation> | |
| Type | std::accumulate (InputIterator first, InputIterator last, Type init, BinaryOperation __binary_op) |
| Accumulate values in a range with operation. | |
| template<typename InputIterator1, typename InputIterator2, typename Type> | |
| Type | std::inner_product (InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, Type init) |
| Compute inner product of two ranges. | |
| template<typename InputIterator1, typename InputIterator2, typename Type, typename BinaryOperation1, typename BinaryOperation2> | |
| Type | std::inner_product (InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, Type init, BinaryOperation1 __binary_op1, BinaryOperation2 __binary_op2) |
| Compute inner product of two ranges. | |
| template<typename InputIterator, typename OutputIterator> | |
| OutputIterator | std::partial_sum (InputIterator first, InputIterator last, OutputIterator __result) |
| Return list of partial sums. | |
| template<typename InputIterator, typename OutputIterator, typename BinaryOperation> | |
| OutputIterator | std::partial_sum (InputIterator first, InputIterator last, OutputIterator __result, BinaryOperation __binary_op) |
| Return list of partial sums. | |
| template<typename InputIterator, typename OutputIterator> | |
| OutputIterator | std::adjacent_difference (InputIterator first, InputIterator last, OutputIterator __result) |
| Return differences between adjacent values. | |
| template<typename InputIterator, typename OutputIterator, typename BinaryOperation> | |
| OutputIterator | std::adjacent_difference (InputIterator first, InputIterator last, OutputIterator __result, BinaryOperation __binary_op) |
| Return differences between adjacent values. | |
Definition in file stl_numeric.h.
1.5.1