21
Containers library
[containers]
21.3
Sequence containers
[sequences]
21.3.7
Class template
array
[array]
21.3.7.5
Zero-sized arrays
[array.zero]
1
#
array
shall provide support for the special case
N == 0
.
2
#
In the case that
N == 0
,
begin() == end() ==
unique value
.
The return value of
data()
is unspecified
.
3
#
The effect of calling
front()
or
back()
for a zero-sized array is undefined
.
4
#
Member function
swap()
shall have a non-throwing exception specification
.