| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | |||||||||
| |||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
| Member functions | ||||
| Deduction guides | ||||
| Iterator | ||||
| Member functions | ||||
zip_transform_view::iterator::iterator | ||||
| Non-member functions | ||||
| Sentinel | ||||
| Member functions | ||||
| Non-member functions | ||||
/*iterator*/iterator()=default; | (1) | (since C++23) |
constexpr/*iterator*/(/*iterator*/<!Const> i) requires Const&& | (2) | (since C++23) |
constexpr/*iterator*/( Parent& parent,/*ziperator*/<Const> inner); | (3) | (exposition only*) |
Construct an iterator.
parent_ withi.parent_ andinner_ withstd::move(i.inner_).parent_ withstd::addressof(parent), and the underlyinginner_ iterator withstd::move(inner). This constructor is not accessible to users.| i | - | an/*iterator*/<false> |
| parent | - | a (possibly const-qualified)ranges::zip_transform_view |
| inner | - | an iterator of typeziperator<Const> |
| This section is incomplete Reason: no example |