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::block_bytes
// In header: <boost/container/options.hpp> template<std::size_t BlockBytes> struct block_bytes { };
This option specifies the maximum size of a block in bytes: this delimites the number of contiguous elements that will be allocated by some segmented containers as min(1u, BlockBytes/sizeof(value_type)) A value zero represents the default value.