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 2022. The current version is 1.89.0.
| Front Page / Changelog & History / Changes in Boost 1.32.0 Release / Miscellaneous |
vector has been re-implemented to support constant-time insertion at both the beginning and the end. For example, this is now well-formed for a vector v:
typedef push_back<v,int>::type v1; typedef push_front<v1,int>::type v2;
The interfaces of some sequence building algorithms such as copy have been changed. Please see the reference manual for the details of the new interface.