std::{{{1}}}::begin, std::{{{1}}}::cbegin
From cppreference.com
Revision as of 06:28, 18 May 2020 by Space Mission (Talk | contribs)
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 {{{1}}}
.
If the {{{1}}}
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}}} )
|