If initializer_list was defined as std::initializer_list<type, size>, then any function that takes an initializer_list<type>, where type is some concrete type, would now have to be a template function based on that list's size. Or they would have to require that users pass an initializer_list of a specific type and size.
Both of these are pretty unacceptable. Not everyone writes all of their code as templates.
You can initialize a std::array from an initializer list... sort of. The array class uses the C++0x definition for aggregate types. That is, it is an aggregate type. It is a struct that contains a single element, which is a public array. Therefore, on a conforming C++0x implementation, this should compile:
std::array<int, 3> = {{1, 3, 5}};
You cannot pass a std::initializer_list object to the constructor, but you can use aggregate initialization to initialize a std::array, just as you would for a struct containing an array.
std::initializer_list::sizenotconstexpr(anymore) ?" which was asked on clc++m a year ago. – MSalters Aug 18 '11 at 14:05