[flat.set.cons.alloc] (original) (raw)
template<class Alloc> constexpr explicit flat_set(const Alloc& a);template<class Alloc> constexpr flat_set(const key_compare& comp, const Alloc& a);template<class Alloc> constexpr flat_set(const flat_set&, const Alloc& a);template<class Alloc> constexpr flat_set(flat_set&&, const Alloc& a);template<class InputIterator, class Alloc> constexpr flat_set(InputIterator first, InputIterator last, const Alloc& a);template<class InputIterator, class Alloc> constexpr flat_set(InputIterator first, InputIterator last, const key_compare& comp,const Alloc& a);template<class InputIterator, class Alloc> constexpr flat_set(sorted_unique_t, InputIterator first, InputIterator last, const Alloc& a);template<class InputIterator, class Alloc> constexpr flat_set(sorted_unique_t, InputIterator first, InputIterator last,const key_compare& comp, const Alloc& a);template<[_container-compatible-range_](container.intro.reqmts#concept:container-compatible-range "23.2.2.1 Introduction [container.intro.reqmts]")<value_type> R, class Alloc> constexpr flat_set(from_range_t, R&& rg, const Alloc& a);template<[_container-compatible-range_](container.intro.reqmts#concept:container-compatible-range "23.2.2.1 Introduction [container.intro.reqmts]")<value_type> R, class Alloc> constexpr flat_set(from_range_t, R&& rg, const key_compare& comp, const Alloc& a);template<class Alloc> constexpr flat_set(initializer_list<value_type> il, const Alloc& a);template<class Alloc> constexpr flat_set(initializer_list<value_type> il, const key_compare& comp, const Alloc& a);template<class Alloc> constexpr flat_set(sorted_unique_t, initializer_list<value_type> il, const Alloc& a);template<class Alloc> constexpr flat_set(sorted_unique_t, initializer_list<value_type> il,const key_compare& comp, const Alloc& a);