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 the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Struct template block_size

boost::container::block_size

Synopsis

// In header: <boost/container/options.hpp>

template<std::size_t BlockSize> 
struct block_size {
};

Description

This option specifies the size of a block, delimites the number of contiguous elements that will be allocated by deque as BlockSize. A value zero represents the default value.


PrevUpHomeNext