deduction guides for std::ranges::join_with_view
From cppreference.com
< cpp | ranges | join with view
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Ranges library
(C++23)(C++23)
(C++26)(C++26)
(C++23)(C++23)
(C++26)(C++26)
(C++26)(C++26)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)
(C++23)(C++23)
(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
std::ranges::join_with_view
Deduction guides
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)
join_with_view( R&&, P&& ) -> join_with_view<views::all_t <R>, views::all_t <P>>;
template< class R >
(2)
(since C++23)
join_with_view( R&&, ranges::range_value_t <ranges::range_reference_t <R>> )
-> join_with_view<views::all_t <R>,
ranges::single_view <
These deduction guides are provided for join_with_view
to allow deduction from a range and a delimiter.
1) The delimiter is a range of elements.
2) The delimiter is a single element.
[edit] Example
This section is incomplete
Reason: no example
Reason: no example