deduction guides for std::ranges::concat_view
From cppreference.com
C++
Ranges library
| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | ||||||||||||||
| ||||||||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
std::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 ranges.
Example
| This section is incomplete Reason: no example |