Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This version of Boost is under active development. You are currently in the develop branch. The current version is 1.91.0.
boost::container::for_each
// In header: <boost/container/hub.hpp> template<typename ValuePtr, typename F> F for_each(HubIteratorType first, HubIteratorType last, F f);
Effects: Applies f to every element in [first, last), in order. Equivalent to: while(first != last) f(*first++); return f;
Requires: decltype(first) is the iterator or const_iterator of an instantiation of hub and [first, last) is a valid range.
Returns: std::move(f).
Note: Potentially faster than the equivalent loop thanks to internal unrolling and prefetching.