Namespaces
Variants

std::ranges::join_with_view<V,Pattern>::begin

From cppreference.com
 
 
Ranges library
Range adaptors
 
 
constexpr auto begin();
(1) (since C++23)
constexpr auto begin() const requires ranges::forward_range<const V> && ranges::forward_range<const Pattern> && std::is_reference_v<ranges::range_reference_t<const V>> && ranges::input_range<ranges::range_reference_t<const V>> && /*concatable*/<ranges::range_reference_t<const V>, const Pattern>;
(2) (since C++23)

Returns an iterator to the beginning of the join_with_view.

1) Returns a mutable iterator or const iterator.
2) Returns a const iterator.
For the definition of concatable, see std::ranges::concat_view.

Return value

1) As described above.
2) iterator <true>{*this, ranges::begin(base_)}.

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]