|
Range primitives | |||||||
|
Range concepts | |||||||||||||||||||
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
Helper items | |||||||||||||||||
|
Member functions | ||||
Deduction guides | ||||
Iterator | ||||
Member functions | ||||
Non-member functions | ||||
Sentinel | ||||
Member functions | ||||
Non-member functions | ||||
template<bool Const> class/*iterator*/; | (exposition only*) | |
The iterator type of a possibly const-qualifiedzip_view
, returned byzip_view::begin
and in certain cases byzip_view::end
.
The type/*iterator*/<true> or/*iterator*/<false> treats the underlying views as const-qualified or non-const-qualified respectively.
Contents |
Member type | Definition |
iterator_concept |
|
iterator_category (conditionally present) |
|
value_type |
|
difference_type |
|
Member name | Definition |
current_ (private) |
|
constructs an iterator (public member function) | |
obtains a tuple-like value that consists of underlying pointed-to elements (public member function) | |
obtains a tuple-like value that consists of underlying elements at given offset (public member function) | |
advances or decrements the underlying iterators (public member function)[edit] |
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) |
This section is incomplete Reason: no example |