I noticed that C++23 added new overloads for the std::stack
and std::queue
container adapters' constructors, which allow to construct the underlying container with the contents of the range [first, last)
. cppreference also shows how these overloads can be used with std::initializer_list
, and provides the following examples:
const auto il = {2, 7, 1, 8, 2};
std::stack<int> c4 { il.begin(), il.end() }; // overloads (6), C++23
const auto il = {2, 7, 1, 8, 2};
std::queue<int> c4 { il.begin(), il.end() }; // overload (6), C++23
This means that introducing other overloaded constructors in order to construct the underlying container with the contents of an std::initialization_list
is not necessary.
However, C++23 had added also other container adapters, such as std::flat_set
, and cppreference shows an example of implementation of the std::flat_set
container adapter, where the following overloaded constructors are provided:
flat_set(initializer_list<key_type> il, const key_compare& comp = key_compare())
: flat_set(il.begin(), il.end(), comp) { }
template<class Allocator>
flat_set(initializer_list<key_type> il, const key_compare& comp, const Allocator& a);
template<class Allocator>
flat_set(initializer_list<key_type> il, const Allocator& a);
Why do std::flat_set
and std::flat_map
have overloaded constructors for std::initializer_list
while other container adapters don't?
I'll copy my std-proposals answer here, since it covers a bit more than LoS's own answer above.
First, a quotation from P2447R3:
Then I wrote: