tmp/tmpjtyeiq7v/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Alias template `make_integer_sequence` <a id="intseq.make">[[intseq.make]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
template<class T, T N>
|
| 5 |
+
using make_integer_sequence = integer_sequence<T, see below>;
|
| 6 |
+
```
|
| 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>`. `make_integer_sequence<int, 0>`
|
| 13 |
+
denotes the type `integer_sequence<int>`
|
| 14 |
+
|