On this page
std::ranges::enumerate_view<V>::iterator<Const>::iterator
|
(1) | (since C++23) |
|
(2) | (since C++23) |
|
(3) | (exposition only*) |
Construct an iterator.
1) Default constructor. Value-initializes the underlying iterator
current_
with ranges::iterator_t<Base>()
and the underlying index pos_
with 0
.
2) Conversion from
/*iterator*/<false>
to /*iterator*/<true>
. Initializes current_
with std::move(i.current_)
and pos_
with i.pos_
.
3) A private constructor which is used by
enumerate_view::begin
and enumerate_view::end
. This constructor is not accessible to users. Initializes current_
with std::move(current)
and pos_
with pos
.
Parameters
i | - | an /*iterator*/<false> |
Example
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/enumerate_view/iterator/iterator