...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
namespace boost { namespace algorithm { template<typename InputIterator, typename OutputIterator, typename BinaryOperation, typename UnaryOperation, typename T> OutputIterator transform_inclusive_scan(InputIterator, InputIterator, OutputIterator, BinaryOperation, UnaryOperation, T); template<typename InputIterator, typename OutputIterator, typename BinaryOperation, typename UnaryOperation> OutputIterator transform_inclusive_scan(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation bOp, UnaryOperation uOp); } }