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 is an older version of Boost and was released in 2019. The current version is 1.89.0.
template< class Container, class SinglePassRange > Container& push_front(Container& target, const SinglePassRange& from);
push_front all of the
elements in the range from
to the front of the container target.
Defined in the header file boost/range/algorithm_ext/push_front.hpp
SinglePassRange is
a model of the Single
Pass Range Concept.
Container supports
insert at begin().
SinglePassRange's
value type is convertible to Container's
value type.
Linear. distance(from)
assignments are performed.