std::ranges::join_with_view<V,Pattern>::join_with_view - cppreference.com
From cppreference.com
|
|
(1) | (since C++23) |
|
|
(2) | (since C++23) |
|
|
(3) | (since C++23) |
Constructs a join_with_view, initializes the underlying view base_ and the stored pattern pattern_ .
| Overload | Data members | |
|---|---|---|
base_
|
pattern_
| |
| (1) | value-initialized | value-initialized |
| (2) | initialized with std::move(base)
|
initialized with std::move(pattern)
|
| (3) | initialized with views::all(std::forward<R>(r))
|
initialized with views::single(std::move(e))
|
Parameters
| base | - | a view of ranges to be flattened |
| pattern | - | view to be used as the delimiter |
| e | - | element to be used as the delimiter |