On this page
std::ranges::zip_view<Views...>::iterator
|
(1) | (exposition only*) |
Helper concepts | ||
|
(2) | (exposition only*) |
|
(3) | (exposition only*) |
|
(4) | (exposition only*) |
The iterator type of a possibly const-qualified zip_view
, returned by zip_view::begin
and in certain cases by zip_view::end
.
The type /*iterator*/<true>
or /*iterator*/<false>
treats the underlying views as const-qualified or non-const-qualified respectively.
Member types
Member type | Definition |
---|---|
iterator_concept |
|
iterator_category |
|
value_type |
|
difference_type |
|
Data members
Member object | Definition |
---|---|
current_ (private) |
A tuple of underlying iterators of type std::tuple<ranges::iterator_t<Views>...> or std::tuple<ranges::iterator_t<const Views>...> when Const is false or true respectively.(exposition-only member object*) |
Member functions
(C++23)
|
constructs an iterator (public member function) |
(C++23)
|
obtains a tuple-like value that consists of underlying pointed-to elements (public member function) |
(C++23)
|
obtains a tuple-like value that consists of underlying elements at given offset (public member function) |
(C++23)
|
advances or decrements the underlying iterators (public member function) |
Non-member functions
(C++23)
|
compares the underlying iterators (function) |
(C++23)
|
performs iterator arithmetic on underlying iterators (function) |
(C++23)
|
obtains a tuple-like value that denotes underlying pointed-to elements to be moved (function) |
(C++23)
|
swaps underlying pointed-to elements (function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/zip_view/iterator