std::ranges::enumerate_view<V>::sentinel<Const>::base
From cppreference.com
C++
Ranges library
| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | ||||||||||||||
| ||||||||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
std::ranges::enumerate_view
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 |