std::ranges::join_with_view<V,Pattern>::begin
From cppreference.com
< cpp | ranges | join with view
C++
Ranges library
| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | |||||||||
| |||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
std::ranges::join_with_view
| Member functions | ||||
join_with_view::begin | ||||
| Deduction guides | ||||
| Iterator | ||||
| Member functions | ||||
| Non-member functions | ||||
| Sentinel | ||||
| constexpr auto begin(); |
(1) | (since C++23) |
| constexpr auto begin() const requires ranges::forward_range<const V> && |
(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 to constexpr 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.
For the definition of
concatable, see std::ranges::concat_view.[edit] Return value
1) As described above.
2)
iterator <true>{*this, ranges::begin(base_)}.[edit] Example
| This section is incomplete Reason: no example |
[edit] See also
| returns an iterator or a sentinel to the end (public member function) [edit] | |
| (C++20) |
returns an iterator to the beginning of a range (customization point object)[edit] |