tmp/tmpzd6gxuxq/{from.md → to.md}
RENAMED
|
@@ -2,5 +2,13 @@
|
|
| 2 |
|
| 3 |
The headers `<array>`, `<deque>`, `<forward_list>`, `<list>`, and
|
| 4 |
`<vector>` define class templates that meet the requirements for
|
| 5 |
sequence containers.
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
The headers `<array>`, `<deque>`, `<forward_list>`, `<list>`, and
|
| 4 |
`<vector>` define class templates that meet the requirements for
|
| 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 = typename iterator_traits<InputIterator>::value_type; // exposition only
|
| 13 |
+
```
|
| 14 |
+
|