Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===----------------------- initializer_list -----------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_INITIALIZER_LIST |
| 12 | #define _LIBCPP_INITIALIZER_LIST |
| 13 | |
| 14 | /* |
| 15 | initializer_list synopsis |
| 16 | |
| 17 | namespace std |
| 18 | { |
| 19 | |
| 20 | template<class E> |
| 21 | class initializer_list |
| 22 | { |
| 23 | public: |
| 24 | typedef E value_type; |
| 25 | typedef const E& reference; |
| 26 | typedef const E& const_reference; |
| 27 | typedef size_t size_type; |
| 28 | |
| 29 | typedef const E* iterator; |
| 30 | typedef const E* const_iterator; |
| 31 | |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 32 | initializer_list() noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 33 | |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 34 | size_t size() const noexcept; |
| 35 | const E* begin() const noexcept; |
| 36 | const E* end() const noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 37 | }; |
| 38 | |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 39 | template<class E> const E* begin(initializer_list<E> il) noexcept; |
| 40 | template<class E> const E* end(initializer_list<E> il) noexcept; |
Howard Hinnant | fcc5938 | 2010-05-28 17:53:59 +0000 | [diff] [blame] | 41 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 42 | } // std |
| 43 | |
| 44 | */ |
| 45 | |
| 46 | #include <__config> |
| 47 | #include <cstddef> |
| 48 | |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 49 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 50 | #pragma GCC system_header |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 51 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 52 | |
| 53 | namespace std // purposefully not versioned |
| 54 | { |
| 55 | |
Howard Hinnant | e3e3291 | 2011-08-12 21:56:02 +0000 | [diff] [blame] | 56 | #ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS |
| 57 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 58 | template<class _Ep> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 59 | class _LIBCPP_TYPE_VIS_ONLY initializer_list |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 60 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 61 | const _Ep* __begin_; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 62 | size_t __size_; |
| 63 | |
| 64 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 65 | initializer_list(const _Ep* __b, size_t __s) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 66 | : __begin_(__b), |
| 67 | __size_(__s) |
| 68 | {} |
| 69 | public: |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 70 | typedef _Ep value_type; |
| 71 | typedef const _Ep& reference; |
| 72 | typedef const _Ep& const_reference; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 73 | typedef size_t size_type; |
| 74 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 75 | typedef const _Ep* iterator; |
| 76 | typedef const _Ep* const_iterator; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 77 | |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 78 | _LIBCPP_ALWAYS_INLINE initializer_list() _NOEXCEPT : __begin_(nullptr), __size_(0) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 79 | |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 80 | _LIBCPP_ALWAYS_INLINE size_t size() const _NOEXCEPT {return __size_;} |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 81 | _LIBCPP_ALWAYS_INLINE const _Ep* begin() const _NOEXCEPT {return __begin_;} |
| 82 | _LIBCPP_ALWAYS_INLINE const _Ep* end() const _NOEXCEPT {return __begin_ + __size_;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 83 | }; |
| 84 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 85 | template<class _Ep> |
Howard Hinnant | fcc5938 | 2010-05-28 17:53:59 +0000 | [diff] [blame] | 86 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 87 | const _Ep* |
| 88 | begin(initializer_list<_Ep> __il) _NOEXCEPT |
Howard Hinnant | fcc5938 | 2010-05-28 17:53:59 +0000 | [diff] [blame] | 89 | { |
| 90 | return __il.begin(); |
| 91 | } |
| 92 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 93 | template<class _Ep> |
Howard Hinnant | fcc5938 | 2010-05-28 17:53:59 +0000 | [diff] [blame] | 94 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 95 | const _Ep* |
| 96 | end(initializer_list<_Ep> __il) _NOEXCEPT |
Howard Hinnant | fcc5938 | 2010-05-28 17:53:59 +0000 | [diff] [blame] | 97 | { |
| 98 | return __il.end(); |
| 99 | } |
| 100 | |
Howard Hinnant | e3e3291 | 2011-08-12 21:56:02 +0000 | [diff] [blame] | 101 | #endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS |
| 102 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 103 | } // std |
| 104 | |
| 105 | #endif // _LIBCPP_INITIALIZER_LIST |