tmp/tmps53g6185/{from.md → to.md}
RENAMED
|
@@ -1,24 +1,24 @@
|
|
| 1 |
### Initializer list access <a id="support.initlist.access">[[support.initlist.access]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
const E* begin() const noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* A pointer to the beginning of the array. If `size() == 0` the
|
| 8 |
values of `begin()` and `end()` are unspecified but they shall be
|
| 9 |
identical.
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
-
const E* end() const noexcept;
|
| 13 |
```
|
| 14 |
|
| 15 |
*Returns:* `begin() + size()`
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
-
size_t size() const noexcept;
|
| 19 |
```
|
| 20 |
|
| 21 |
*Returns:* The number of elements in the array.
|
| 22 |
|
| 23 |
-
*Complexity:*
|
| 24 |
|
|
|
|
| 1 |
### Initializer list access <a id="support.initlist.access">[[support.initlist.access]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
constexpr const E* begin() const noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* A pointer to the beginning of the array. If `size() == 0` the
|
| 8 |
values of `begin()` and `end()` are unspecified but they shall be
|
| 9 |
identical.
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
+
constexpr const E* end() const noexcept;
|
| 13 |
```
|
| 14 |
|
| 15 |
*Returns:* `begin() + size()`
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
+
constexpr size_t size() const noexcept;
|
| 19 |
```
|
| 20 |
|
| 21 |
*Returns:* The number of elements in the array.
|
| 22 |
|
| 23 |
+
*Complexity:* Constant time.
|
| 24 |
|