deduction guides for std::ranges::transform_view

From cppreference.com
 
 
Ranges library
Range access
Range conversions
(C++23)
Range primitives



Dangling iterator handling
Range concepts
Views

Range factories
Range adaptors
Range generators
Range adaptor objects
Range adaptor closure objects
Helper items
(until C++23)(C++23)


 
 
template< class R, class F >
transform_view( R&&, F ) -> transform_view<views::all_t<R>, F>;
(since C++20)

The deduction guide is provided for std::ranges::transform_view to allow deduction from range and transformation function.

Example