ContainerBasedSequence¶
[req.container_based_sequence]
A type C satisfies ContainerBasedSequence if it meets the following requirements:
ContainerBasedSequence Requirements: Pseudo-Signature, Semantics
Note
In this page
c
is an object of type (possiblyconst
)C
.Templates that use the named requirement can impose stricter requirements on the iterator concept.
-
std
::
begin
(c)¶ Returns an input iterator to the beginning of the sequence represented by
c
.
-
std
::
end
(c)¶ Returns an input iterator one past the end of the sequence represented by
c
.
See also: