Namespaces
Variants
Views
Actions

std::ranges::enumerate_view<V>::sentinel<Const>::base

From cppreference.com
 
 
Ranges library
Range adaptors
 
 
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