deduction guides for
std::ranges::join_with_view
|
||||||||||||||||||||||
| Range primitives | |||||||
|
|||||||
| Range concepts | |||||||||||||||||||
|
|||||||||||||||||||
| Range factories | |||||||||
|
|||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||
| Helper items | |||||||||||||||||
|
|
||||||||||||||||
| Member functions | ||||
| Deduction guides | ||||
| Iterator | ||||
| Member functions | ||||
| Non-member functions | ||||
| Sentinel | ||||
|
Defined in header
<ranges>
|
||
|
template
<
class
R,
class
P
>
join_with_view ( R && , P && ) - > join_with_view < views:: all_t < R > , views:: all_t < P >> ; |
(1) | (since C++23) |
|
template
<
class
R
>
join_with_view
(
R
&&
,
ranges::
range_value_t
<
ranges::
range_reference_t
<
R
>>
)
|
(2) | (since C++23) |
These
deduction guides
are provided for
join_with_view
to allow deduction from a range and a delimiter.
Example
|
This section is incomplete
Reason: no example |