This header is part of the utility library.
Classes
std::initializer_list (C++11) | (class template) |
Functions
specializes std::begin (function template) | |
(C++11) | specializes std::end (function template) |
Synopsis
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | namespace std { template < class E> class initializer_list { public : typedef E value_type; typedef const E& reference; typedef const E& const_reference; typedef size_t size_type; typedef const E* iterator; typedef const E* const_iterator; initializer_list() noexcept; size_t size() const noexcept; // number of elements const E* begin() const noexcept; // first element const E* end() const noexcept; // one past the last element }; // initializer list range access template < class E> const E* begin(initializer_list<E> il) noexcept; template < class E> const E* end(initializer_list<E> il) noexcept; } |
Please login to continue.