deduction guides for std::ranges::zip_transform_view
From cppreference.com
< cpp | ranges | zip transform view
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Ranges library
(C++23)(C++23)
(C++26)(C++26)
(C++23)(C++23)
(C++26)(C++26)
(C++26)(C++26)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)
(C++23)(C++23)
(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
std::ranges::zip_transform_view
Deduction guides
Member functions
Non-member functions
Member functions
Non-member functions
template< class F, class... Rs >
zip_transform_view( F, Rs&&... ) -> zip_transform_view<F, views::all_t <Rs>...>;
(since C++23)
zip_transform_view( F, Rs&&... ) -> zip_transform_view<F, views::all_t <Rs>...>;
The deduction guide is provided for std::ranges::zip_transform_view to allow deduction from transformation function and range
s.
[edit] Example
This section is incomplete
Reason: example
Reason: example