template< class E > const E* end( initializer_list<E> il ) noexcept; | (since C++11) | |
template< class E > constexpr const E* end( initializer_list<E> il ) noexcept; | (since C++11) (until C++14) |
The overload of std::end
for initializer_list
returns a pointer to one past the last element of il
.
il | - | an initializer_list |
il.end()
.
#include <iostream> int main() { // range-based for uses std::begin and std::end to iterate // over a given range; in this case, it's an initializer list for (int i : {3, 1, 4, 1}) { std::cout << i << '\n'; } }
Output:
3 1 4 1
returns a pointer to one past the last element (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/utility/initializer_list/end2