tmp/tmpnxfu0lkn/{from.md → to.md}
RENAMED
|
@@ -1,14 +1,14 @@
|
|
| 1 |
-
###
|
| 2 |
|
| 3 |
-
The headers `<array>`, `<deque>`, `<forward_list>`, `<
|
| 4 |
-
`<vector>` define class templates that
|
| 5 |
-
sequence containers.
|
| 6 |
|
| 7 |
The following exposition-only alias template may appear in deduction
|
| 8 |
guides for sequence containers:
|
| 9 |
|
| 10 |
``` cpp
|
| 11 |
template<class InputIterator>
|
| 12 |
-
using iter-value-type =
|
| 13 |
```
|
| 14 |
|
|
|
|
| 1 |
+
### General <a id="sequences.general">[[sequences.general]]</a>
|
| 2 |
|
| 3 |
+
The headers `<array>`, `<deque>`, `<forward_list>`, `<hive>`,
|
| 4 |
+
`<inplace_vector>`, `<list>`, and `<vector>` define class templates that
|
| 5 |
+
meet the requirements for sequence containers.
|
| 6 |
|
| 7 |
The following exposition-only alias template may appear in deduction
|
| 8 |
guides for sequence containers:
|
| 9 |
|
| 10 |
``` cpp
|
| 11 |
template<class InputIterator>
|
| 12 |
+
using iter-value-type = iterator_traits<InputIterator>::value_type; // exposition only
|
| 13 |
```
|
| 14 |
|