PrevUpHomeNext

Struct template small_buffer_size

boost::double_ended::small_buffer_size

Synopsis

// In header: <boost/double_ended/devector.hpp>

template<unsigned Size> 
struct small_buffer_size {

  // public data members
  static const unsigned size;
};

Description

Instructs devector to make space for Size elements inline with its internals, allowing to store that much elements without allocating memory.

Models the SmallBufferPolicy concept of the devector class.


PrevUpHomeNext