...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Boost version 1.35 introduced some larger refactorings of the library:
as_literal
()
.
size
now requires a Random
Access Range. The old behavior is provided as distance
()
.
range_size<T>::type
has been completely removed in
favor of range_difference<T>::type
boost_range_begin()
and boost_range_end()
have been renamed range_begin()
and range_end()
respectively.
range_result_iterator<T>::type
and range_reverse_result_iterator<T>::type
have been renamed range_iterator<T>::type
and range_reverse_iterator<T>::type
.