source: mainline/uspace/lib/cpp/include/impl/initializer_list.hpp@ b024c0c9

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since b024c0c9 was b024c0c9, checked in by Dzejrou <dzejrou@…>, 7 years ago

cpp: added missing include (size_t was missing)

  • Property mode set to 100644
File size: 2.9 KB
Line 
1/*
2 * Copyright (c) 2017 Jaroslav Jindrak
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef LIBCPP_INITIALIZER_LIST
30#define LIBCPP_INITIALIZER_LIST
31
32#include <cstdlib>
33
34namespace std
35{
36 /**
37 * 18.9, initializer lists:
38 */
39
40 template<class T>
41 class initializer_list
42 {
43 public:
44 using value_type = T;
45 using const_reference = const T&;
46 using reference = const_reference;
47 using size_type = size_t;
48 using const_iterator = const T*;
49 using iterator = const_iterator;
50
51 constexpr initializer_list() noexcept
52 : begin_{nullptr}, size_{0}
53 { /* DUMMY BODY */ }
54
55 constexpr size_type size() const noexcept
56 {
57 return size_;
58 }
59
60 constexpr iterator begin() const noexcept
61 {
62 return begin_;
63 }
64
65 constexpr iterator end() const noexcept
66 {
67 return begin_ + size_;
68 }
69
70 private:
71 iterator begin_;
72 size_type size_;
73
74 constexpr initializer_list(iterator begin, size_type size)
75 : begin_{begin}, size_{size}
76 { /* DUMMY BODY */ }
77 };
78
79 /**
80 * 18.9.3, initializer list range access:
81 */
82
83 template<class T>
84 constexpr auto begin(initializer_list<T> init)
85 {
86 return init.begin();
87 }
88
89 template<class T>
90 constexpr auto end(initializer_list<T> init)
91 {
92 return init.end();
93 }
94}
95
96#endif
Note: See TracBrowser for help on using the repository browser.