std::ranges::join_with_view<V,Pattern>::begin - cppreference.com
From cppreference.com
|
|
(1) | (since C++23) |
|
|
(2) | (since C++23) |
Returns an iterator to the beginning of the join_with_view.
1) Returns a mutable iterator or const iterator.
- If
Vmodelsforward_range, equivalent toconstexpr bool use_const =simple-view<V> && std::is_reference_v<InnerRng> &&simple-view<Pattern>;returniterator<use_const>{*this, ranges::begin(base_)};. - Otherwise, equivalent to
outer_it_= ranges::begin(base_);returniterator<false>{*this};.
2) Returns a const iterator.
Return value
1) As described above.
Example
See also
| returns an iterator or a sentinel to the end (public member function) [edit] | |
| returns an iterator to the beginning of a range (customization point object)[edit] |