Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template slist

boost::container::slist

Synopsis

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


template<typename InpIt, typename Allocator> 
   slist(InpIt, InpIt, Allocator const &);

Description

Deduction guide: allows an slist to be constructed from the iterator range [first, last), deducing the element type from the value type of InpIt and taking the allocator type from the supplied allocator.


PrevUpHomeNext