std::ranges::drop_view<V>::end
From cppreference.com
constexpr auto end() requires (!__SimpleView<V>); |
(1) | (since C++20) |
constexpr auto end() const requires ranges::range<const V>; |
(2) | (since C++20) |
Returns a sentinel or an iterator representing the end of the drop_view
.
Effectively returns ranges::end(base_), where base_ is the underlying view.
Parameters
(none)
Return value
a sentinel or an iterator representing the end of the view
Example
This section is incomplete Reason: no example |
See also
returns an iterator to the beginning (public member function) |