std::ranges::zip_transform_view<F,Views...>:: end
|
||||||||||||||||||||||
| Range primitives | |||||||
|
|||||||
| Range concepts | |||||||||||||||||||
|
|||||||||||||||||||
| Range factories | |||||||||
|
|||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||
| Helper items | |||||||||||||||||
|
|
||||||||||||||||
| Member functions | ||||
|
zip_transform_view::end
|
||||
| Deduction guides | ||||
| Iterator | ||||
| Member functions | ||||
| Non-member functions | ||||
| Sentinel | ||||
| Member functions | ||||
| Non-member functions | ||||
|
constexpr
auto
end
(
)
;
|
(1) | (since C++23) |
|
constexpr
auto
end
(
)
const
requires
ranges::
range
<
const
/*InnerView*/
>
&&
|
(2) | (since C++23) |
Returns an
iterator
or a
sentinel
that compares equal to the end iterator of the
zip_transform_view
.
Let
zip_
denote the underlying tuple of views:
if constexpr ( ranges:: common_range < /*InnerView*/ > )
return
/*iterator*/
<
false
>
(
*
this, zip_.
end
(
)
)
;
else
if constexpr ( ranges:: common_range < const /*InnerView*/ > )
return
/*iterator*/
<
true
>
(
*
this, zip_.
end
(
)
)
;
else
Contents |
Parameters
(none)
Return value
An iterator or sentinel representing the end of the
zip_transform_view
, as described above.
Example
|
This section is incomplete
Reason: no example |
See also
|
returns an iterator to the beginning
(public member function) |
|
|
(C++20)
|
returns a sentinel indicating the end of a range
(customization point object) |