Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Deduction guide for set

boost::container::set

Synopsis

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


template<typename InputIterator, typename AllocatorOrCompare> 
  set(InputIterator, InputIterator, AllocatorOrCompare const &) -> set< it_based_value_type_t< InputIterator >, typename dtl::if_c< dtl::is_allocator< AllocatorOrCompare >::value, std::less< it_based_value_type_t< InputIterator > >, AllocatorOrCompare >::type, typename dtl::if_c< dtl::is_allocator< AllocatorOrCompare >::value, AllocatorOrCompare, new_allocator< it_based_value_type_t< InputIterator > > >::type >;

Description

Deduction guide: allows a set to be constructed from the iterator range [first, last), deducing the key type from InputIterator. The trailing argument is used as the allocator if it is an allocator type, otherwise it is used as the comparator.


PrevUpHomeNext