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>  slist(InpIt, InpIt);

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 using the default allocator.


PrevUpHomeNext