tmp/tmp8uzzes9o/{from.md → to.md}
RENAMED
|
@@ -3,14 +3,15 @@
|
|
| 3 |
``` cpp
|
| 4 |
template<class T, T N>
|
| 5 |
using make_integer_sequence = integer_sequence<T, see below>;
|
| 6 |
```
|
| 7 |
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
`
|
|
|
|
| 12 |
`integer_sequence<T, 0, 1, ..., N-1>`.
|
| 13 |
|
| 14 |
-
[*Note 1*: `make_integer_sequence<int, 0>`
|
| 15 |
-
`integer_sequence<int>` — *end note*]
|
| 16 |
|
|
|
|
| 3 |
``` cpp
|
| 4 |
template<class T, T N>
|
| 5 |
using make_integer_sequence = integer_sequence<T, see below>;
|
| 6 |
```
|
| 7 |
|
| 8 |
+
*Mandates:* `N` ≥ 0.
|
| 9 |
+
|
| 10 |
+
The alias template `make_integer_sequence` denotes a specialization of
|
| 11 |
+
`integer_sequence` with `N` non-type template arguments. The type
|
| 12 |
+
`make_integer_sequence<T, N>` is an alias for the type
|
| 13 |
`integer_sequence<T, 0, 1, ..., N-1>`.
|
| 14 |
|
| 15 |
+
[*Note 1*: `make_integer_sequence<int, 0>` is an alias for the type
|
| 16 |
+
`integer_sequence<int>`. — *end note*]
|
| 17 |
|