| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | |||||||||
| |||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
| Member functions | ||||
elements_view::end | ||||
(C++26) | ||||
| Nested classes | ||||
| Iterator | ||||
| Sentinel | ||||
constexprauto end() requires(!/*simple-view*/<V>&&!ranges::common_range<V>); | (1) | (since C++20) |
constexprauto end() requires(!/*simple-view*/<V>&&ranges::common_range<V>); | (2) | (since C++20) |
constexprauto end()const requiresranges::range<const V>; | (3) | (since C++20) |
constexprauto end()const requiresranges::common_range<const V>; | (4) | (since C++20) |
Returns asentinel or aniterator representing the end of theelements_view.
Letbase_ be the underlying view. Equivalent to:
Contents |
(none)
end() returns an iterator if and only if the underlying view is acommon_range:elements_view<V,F> modelscommon_range wheneverV does.
| This section is incomplete Reason: no example |
| returns an iterator to the beginning (public member function)[edit] | |
(C++20) | returns a sentinel indicating the end of a range (customization point object)[edit] |