| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | |||||||||
| |||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
constexprauto end(); | (1) | (since C++23) |
constexprauto end()const requiresranges::forward_range<const V>&& | (2) | (since C++23) |
Returns aniterator or asentinel that compares equal to the past-the-end iterator of thejoin_with_view.
V modelsforward_range andcommon_range.InnerRng > istrue.InnerRng modelsforward_range andcommon_range.common_range.forward_range andcommon_range.| Overload | Return value | |
|---|---|---|
| Iterator | Sentinel | |
| (1) | iterator <simple-view <V>&& simple-view <Pattern>> {*this,ranges::end(base_)} | sentinel <simple-view <V>&& simple-view <Pattern>> {*this} |
| (2) | iterator <true>{*this,ranges::end(base_)} | sentinel <true>{*this} |
| 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] |