Adobe Source Libraries 1.49.0
A collection of C++ libraries.
Loading...
Searching...
No Matches

Functions

template<typename InputRange, typename OutputIterator>
OutputIterator partial_sum (const InputRange &range, OutputIterator result)
template<typename InputIterator, typename OutputIterator, typename BinaryOperation>
OutputIterator partial_sum (InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op)
template<typename InputRange, typename OutputIterator, typename BinaryOperation>
OutputIterator partial_sum (const InputRange &range, OutputIterator result, BinaryOperation binary_op)

Detailed Description

Function Documentation

◆ partial_sum() [1/3]

template<typename InputRange, typename OutputIterator>
OutputIterator partial_sum ( const InputRange & range,
OutputIterator result )
See also
STL documentation for partial_sum

Definition at line 189 of file numeric.hpp.

◆ partial_sum() [2/3]

template<typename InputIterator, typename OutputIterator, typename BinaryOperation>
OutputIterator partial_sum ( InputIterator first,
InputIterator last,
OutputIterator result,
BinaryOperation binary_op )
See also
STL documentation for partial_sum

Definition at line 199 of file numeric.hpp.

◆ partial_sum() [3/3]

template<typename InputRange, typename OutputIterator, typename BinaryOperation>
OutputIterator partial_sum ( const InputRange & range,
OutputIterator result,
BinaryOperation binary_op )
See also
STL documentation for partial_sum

Definition at line 211 of file numeric.hpp.