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