tmp/tmpoya0b_5f/{from.md → to.md}
RENAMED
|
@@ -6,12 +6,12 @@ template<class T, T N>
|
|
| 6 |
```
|
| 7 |
|
| 8 |
*Mandates:* `N` ≥ 0.
|
| 9 |
|
| 10 |
The alias template `make_integer_sequence` denotes a specialization of
|
| 11 |
-
`integer_sequence` with `N`
|
| 12 |
`make_integer_sequence<T, N>` is an alias for the type
|
| 13 |
-
`integer_sequence<T, 0, 1,
|
| 14 |
|
| 15 |
[*Note 1*: `make_integer_sequence<int, 0>` is an alias for the type
|
| 16 |
`integer_sequence<int>`. — *end note*]
|
| 17 |
|
|
|
|
| 6 |
```
|
| 7 |
|
| 8 |
*Mandates:* `N` ≥ 0.
|
| 9 |
|
| 10 |
The alias template `make_integer_sequence` denotes a specialization of
|
| 11 |
+
`integer_sequence` with `N` constant 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 |
|