Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Deduction guide for segtor

boost::container::segtor

Synopsis

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


template<typename InputIterator> 
  segtor(InputIterator, InputIterator) -> segtor< typename iter_value< InputIterator >::type >;

Description

Deduction guide: allows a segtor to be constructed from the iterator range [first, last), deducing the element type from the value type of InputIterator and using the default allocator.


PrevUpHomeNext