deduction guides for std::ranges::concat_view

From cppreference.com
Ranges library
Range adaptors
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