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

PrevUpHomeNext

Struct template block_bytes

boost::container::block_bytes

Synopsis

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

template<std::size_t BlockBytes> 
struct block_bytes {
};

Description

This option specifies the maximum size of a block in bytes: this delimites the number of contiguous elements that will be allocated by deque as min(1u, BlockBytes/sizeof(value_type)) A value zero represents the default value.

Template Parameters

  1. std::size_t BlockBytes

    An unsigned integer value.


PrevUpHomeNext