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 vector_for_small_vector

boost::container::dtl::vector_for_small_vector

Synopsis

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

template<typename T, typename SecondaryAllocator, typename Options> 
struct vector_for_small_vector {
  // types
  typedef vector< T, small_vector_allocator< T, typename allocator_traits< typename real_allocator< T, SecondaryAllocator >::type >::template portable_rebind_alloc< void >::type, Options >, typename dtl::get_vopt_from_svopt< Options >::type > type;
};

PrevUpHomeNext