table of contents
conflicting packages
std::initializer_list< _E >(3cxx) | std::initializer_list< _E >(3cxx) |
NAME¶
std::initializer_list< _E > - initializer_listSYNOPSIS¶
Public Types¶
typedef size_t size_type
typedef _E value_type
Public Member Functions¶
constexpr const_iterator begin () const noexcept
constexpr const_iterator end () const noexcept
constexpr size_type size () const noexcept
Public Attributes¶
const typedef _E * const_iterator
const typedef _E & const_reference
const typedef _E * iterator
const typedef _E & reference
Related Functions¶
(Note that these are not member functions.)template<class _Tp > constexpr const _Tp * begin (initializer_list< _Tp > __ils) noexcept
Return an iterator pointing to the first element of the initializer_list. template<class _Tp > constexpr const _Tp * end (initializer_list< _Tp > __ils) noexcept
Return an iterator pointing to one past the last element of the initializer_list.
Detailed Description¶
template<class _E>¶
class std::initializer_list< _E >" initializer_listDefinition at line 47 of file initializer_list.
Friends And Related Function Documentation¶
template<class _Tp > constexpr const _Tp * begin (initializer_list< _Tp > __ils) [related]¶
Return an iterator pointing to the first element of the initializer_list.Parameters
__ils Initializer list.
Definition at line 90 of file initializer_list.
template<class _Tp > constexpr const _Tp * end (initializer_list< _Tp > __ils) [related]¶
Return an iterator pointing to one past the last element of the initializer_list.Parameters
__ils Initializer list.
Definition at line 101 of file initializer_list.
Referenced by std::forward_list< _Tp, _Alloc >::resize().
Author¶
Generated automatically by Doxygen for libstdc++ from the source code.Tue Jul 14 2020 | libstdc++ |