std::ranges::zip_transform_view<F,Views...>::end - cppreference.com (original) (raw)
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:
- Equivalent to:
if constexpr (ranges::common_range</*InnerView*/>)
return /*iterator*/<false>(*this, zip_.end());
else
return /*sentinel*/<false>(zip_.end());
- Equivalent to:
if constexpr (ranges::common_range<const /*InnerView*/>)
return /*iterator*/<true>(*this, zip_.end());
else
return /*sentinel*/<true>(zip_.end());
[edit] Parameters
(none)
[edit] Return value
An iterator or sentinel representing the end of the zip_transform_view, as described above.
[edit] Example
[edit] See also
| | returns an iterator to the beginning (public member function) [edit] | | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | | returns a sentinel indicating the end of a range(customization point object)[edit] |