std::{{{1}}}::begin, std::{{{1}}}::cbegin
From cppreference.com
iterator begin() noexcept; |
(since {std}) | |
const_iterator begin() const noexcept; |
(since {std}) | |
const_iterator cbegin() const noexcept; |
(since {std}) | |
Returns an iterator to the first element of the container.
If the container is empty, the returned iterator will be equal to end().
Contents |
Parameters
(none)
Return value
Iterator to the first element
Complexity
Constant
Example
This section is incomplete Reason: no example |
See also
returns an iterator to the end (public member function of std::{{{1}}} )
|