tmp/tmpeiip0hak/{from.md → to.md}
RENAMED
|
@@ -7,8 +7,10 @@ template<class T, T N>
|
|
| 7 |
|
| 8 |
If `N` is negative the program is ill-formed. The alias template
|
| 9 |
`make_integer_sequence` denotes a specialization of `integer_sequence`
|
| 10 |
with `N` template non-type arguments. The type
|
| 11 |
`make_integer_sequence<T, N>` denotes the type
|
| 12 |
-
`integer_sequence<T, 0, 1, ..., N-1>`.
|
| 13 |
-
|
|
|
|
|
|
|
| 14 |
|
|
|
|
| 7 |
|
| 8 |
If `N` is negative the program is ill-formed. The alias template
|
| 9 |
`make_integer_sequence` denotes a specialization of `integer_sequence`
|
| 10 |
with `N` template non-type arguments. The type
|
| 11 |
`make_integer_sequence<T, N>` denotes the type
|
| 12 |
+
`integer_sequence<T, 0, 1, ..., N-1>`.
|
| 13 |
+
|
| 14 |
+
[*Note 1*: `make_integer_sequence<int, 0>` denotes the type
|
| 15 |
+
`integer_sequence<int>` — *end note*]
|
| 16 |
|