tmp/tmpd1wwjyff/{from.md → to.md}
RENAMED
|
@@ -1,14 +1,14 @@
|
|
| 1 |
### Initializer list range access <a id="support.initlist.range">[[support.initlist.range]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
template<class E> const E* begin(initializer_list<E> il) noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* `il.begin()`.
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
-
template<class E> const E* end(initializer_list<E> il) noexcept;
|
| 11 |
```
|
| 12 |
|
| 13 |
*Returns:* `il.end()`.
|
| 14 |
|
|
|
|
| 1 |
### Initializer list range access <a id="support.initlist.range">[[support.initlist.range]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
template<class E> constexpr const E* begin(initializer_list<E> il) noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* `il.begin()`.
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
+
template<class E> constexpr const E* end(initializer_list<E> il) noexcept;
|
| 11 |
```
|
| 12 |
|
| 13 |
*Returns:* `il.end()`.
|
| 14 |
|