24
Containers library
[containers]
24.3
Sequence containers
[sequences]
24.3.1
In general
[sequences.general]
1
#
The headers
<array>
,
<deque>
,
<forward_
list>
,
<list>
, and
<vector>
define class templates that meet the requirements for sequence containers
.
2
#
The following exposition-only alias template may appear in deduction guides for sequence containers:
template
<
class
InputIterator
>
using
iter-value-type
=
typename
iterator_traits
<
InputIterator
>
::
value_type;
//
exposition only