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 a snapshot of the develop branch, built from commit cdb310143f.
PrevUpHomeNext

Struct template small_vector_of

boost::container::pmr::small_vector_of

Synopsis

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

template<typename T, std::size_t N> 
struct small_vector_of {
  // types
  typedef boost::container::small_vector< T, N, polymorphic_allocator< T > > type;
};

Description

A portable metafunction to obtain a small_vector that uses a polymorphic allocator


PrevUpHomeNext