std::ranges::enumerate_view<V>::sentinel<Const>::base
From cppreference.com
< cpp | ranges | enumerate view | sentinel
Revision as of 13:30, 21 April 2023 by Space Mission (Talk | contribs)
constexpr ranges::sentinel_t<Base> base() const; |
(since C++23) | |
Returns the underlying sentinel. Equivalent to return
end_
;.
[edit] Parameters
(none)
[edit] Return value
A copy of the underlying sentinel.
[edit] Example
This section is incomplete Reason: no example |