std::ranges::zip_view<Views...>::iterator<Const>::iterator
From cppreference.com
C++
Ranges library
| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | |||||||||
| |||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
std::ranges::zip_view
| Member functions | ||||
| Deduction guides | ||||
| Iterator | ||||
| Member functions | ||||
zip_view::iterator::iterator | ||||
| Non-member functions | ||||
| Sentinel | ||||
| Member functions | ||||
| Non-member functions | ||||
| /*iterator*/() = default; |
(1) | (since C++23) |
| constexpr /*iterator*/( /*iterator*/<!Const> i ) requires Const && |
(2) | (since C++23) |
Construct an iterator.
1) Default constructor. Value-initializes the underlying tuple of iterators to their default values.
2) Conversion from /*iterator*/<false> to /*iterator*/<true>. Move constructs the underlying tuple of iterators
current_ with std::move(i.current).This iterator also has a private constructor which is used by zip_view::begin and zip_view::end. This constructor is not accessible to users.
[edit] Parameters
| i | - | an /*iterator*/<false> |
[edit] Example
| This section is incomplete Reason: no example |