forked from p12tic/cppreference-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinitializer_list
More file actions
62 lines (47 loc) · 1.76 KB
/
initializer_list
File metadata and controls
62 lines (47 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* Copyright (C) 2015 Povilas Kanapickas <povilas@radix.lt>
This file is part of cppreference-doc
This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
Unported License. To view a copy of this license, visit
http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative
Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with no
Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
*/
#ifndef CPPREFERENCE_INITIALIZER_LIST_H
#define CPPREFERENCE_INITIALIZER_LIST_H
#if CPPREFERENCE_STDVER>= 2011
#include <cstddef> // for size_t
namespace std {
template<class T>
class initializer_list {
public:
typedef T value_type;
typedef const T& reference;
typedef const T& const_reference;
typedef size_t size_type;
typedef const T* iterator;
typedef const T* const_iterator;
#if CPPREFERENCE_STDVER >= 2014
constexpr initializer_list();
constexpr size_t size() const;
constexpr const T* begin() const;
constexpr const T* end() const;
#else
initializer_list();
size_t size() const;
const T* begin() const;
const T* end() const;
#endif
};
#if CPPREFERENCE_STDVER >= 2014
template<class T> constexpr const T* begin(initializer_list<T> il);
template<class T> constexpr const T* end(initializer_list<T> il);
#else
template<class T> const T* begin(initializer_list<T> il);
template<class T> const T* end(initializer_list<T> il);
#endif
} // namespace std
#endif // CPPREFERENCE_STDVER>= 2011
#endif // CPPREFERENCE_INITIALIZER_LIST_H