deduction guides for std::ranges::concat_view
From cppreference.com
< cpp | ranges | concat view
C++
Ranges library
|
Range primitives | |||||||
|
Range concepts | |||||||||||||||||||
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
Helper items | |||||||||||||||||
|
std::ranges::concat_view
Member functions | ||||
Deduction guides | ||||
Iterator | ||||
Member functions | ||||
Non-member functions | ||||
Defined in header <ranges>
|
||
template
<
class... Rs
>
concat_view( Rs&&... ) - > concat_view< views::all_t <Rs>...> ; |
(since C++26) | |
The deduction guide is provided for concat_view
to allow deduction from range
s
Example
This section is incomplete Reason: no example |