deduction guides for std::ranges::concat_view
From cppreference.com
< cpp | ranges | concat view
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.
[edit] Example
This section is incomplete Reason: no example |