2 //===----------------------------------------------------------------------===//
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP_INITIALIZER_LIST
11 #define _LIBCPP_INITIALIZER_LIST
14 initializer_list synopsis
20 class initializer_list
24 typedef const E& reference;
25 typedef const E& const_reference;
26 typedef size_t size_type;
28 typedef const E* iterator;
29 typedef const E* const_iterator;
31 initializer_list() noexcept; // constexpr in C++14
33 size_t size() const noexcept; // constexpr in C++14
34 const E* begin() const noexcept; // constexpr in C++14
35 const E* end() const noexcept; // constexpr in C++14
38 template<class E> const E* begin(initializer_list<E> il) noexcept; // constexpr in C++14
39 template<class E> const E* end(initializer_list<E> il) noexcept; // constexpr in C++14
45 #include <__assert> // all public C++ headers provide the assertion handler
49 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
50 # pragma GCC system_header
53 namespace std // purposefully not versioned
56 #ifndef _LIBCPP_CXX03_LANG
59 class _LIBCPP_TEMPLATE_VIS initializer_list
64 _LIBCPP_INLINE_VISIBILITY
65 _LIBCPP_CONSTEXPR_SINCE_CXX14
66 initializer_list(const _Ep* __b, size_t __s) _NOEXCEPT
71 typedef _Ep value_type;
72 typedef const _Ep& reference;
73 typedef const _Ep& const_reference;
74 typedef size_t size_type;
76 typedef const _Ep* iterator;
77 typedef const _Ep* const_iterator;
79 _LIBCPP_INLINE_VISIBILITY
80 _LIBCPP_CONSTEXPR_SINCE_CXX14
81 initializer_list() _NOEXCEPT : __begin_(nullptr), __size_(0) {}
83 _LIBCPP_INLINE_VISIBILITY
84 _LIBCPP_CONSTEXPR_SINCE_CXX14
85 size_t size() const _NOEXCEPT {return __size_;}
87 _LIBCPP_INLINE_VISIBILITY
88 _LIBCPP_CONSTEXPR_SINCE_CXX14
89 const _Ep* begin() const _NOEXCEPT {return __begin_;}
91 _LIBCPP_INLINE_VISIBILITY
92 _LIBCPP_CONSTEXPR_SINCE_CXX14
93 const _Ep* end() const _NOEXCEPT {return __begin_ + __size_;}
97 inline _LIBCPP_INLINE_VISIBILITY
98 _LIBCPP_CONSTEXPR_SINCE_CXX14
100 begin(initializer_list<_Ep> __il) _NOEXCEPT
106 inline _LIBCPP_INLINE_VISIBILITY
107 _LIBCPP_CONSTEXPR_SINCE_CXX14
109 end(initializer_list<_Ep> __il) _NOEXCEPT
114 #endif // !defined(_LIBCPP_CXX03_LANG)
118 #endif // _LIBCPP_INITIALIZER_LIST