Suppose that you are writing a function that accepts an std::initializer_list
called list
, and that the function requires random access to list
's elements. It would be convenient to write list[i]
instead of list.begin()[i]
. So why doesn't std::initializer_list
provide a definition of operator[]
?
I can't think of any cases where an operator[]
returning const T&
would not be well-defined. Efficiency doesn't seem to be the issue here, since std::initializer_list<T>::iterator
is aliased to const T*
, which is clearly a random-access iterator.
According to Bjarne Stroustrup in Section 17.3.4.2 (p. 497) of The C++ Programming Language, 4th Edition:
Unfortunately, initializer_list doesn't provide subscripting.
No further reason is given.
My guess is that it's one of these reasons:
2 and 4 sound kind of weak. as does 3. My money's on 1.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With