std::ranges::enumerate_view<V>::sentinel<Const>::base
From cppreference.com
< cpp | ranges | enumerate view | sentinel
constexpr ranges::sentinel_t<Base> base() const; |
(since C++23) | |
Returns the underlying sentinel. Equivalent to return
end_
;.
Parameters
(none)
Return value
A copy of the underlying sentinel.
Example
This section is incomplete Reason: no example |