header
<numeric>
Generalized numeric operations
This header describes a set of algorithms to perform certain operations on sequences of numeric values.
Due to their flexibility, they can also be adapted for other kinds of sequences.
Functions
- accumulate
- Accumulate values in range (function template
)
- adjacent_difference
- Compute adjacent difference of range (function template
)
- inner_product
- Compute cumulative inner product of range (function template
)
- partial_sum
- Compute partial sums of range (function template
)
- iota
- Store increasing sequence (function template
)