std::ranges::zip_transform_view<F,Views...>:: zip_transform_view
From cppreference.net
<
cpp
|
ranges
|
zip transform view
C++
Ranges library
|
||||||||||||||||||||||
| Range primitives | |||||||
|
|||||||
| Range concepts | |||||||||||||||||||
|
|||||||||||||||||||
| Range factories | |||||||||
|
|||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||
| Helper items | |||||||||||||||||
|
|
||||||||||||||||
std::ranges::zip_transform_view
| Member functions | ||||
|
zip_transform_view::zip_transform_view
|
||||
| Deduction guides | ||||
| Iterator | ||||
| Member functions | ||||
| Non-member functions | ||||
| Sentinel | ||||
| Member functions | ||||
| Non-member functions | ||||
|
zip_transform_view
(
)
=
default
;
|
(1) | (since C++23) |
|
constexpr
zip_transform_view
(
F fun, Views...
views
)
;
|
(2) | (since C++23) |
1)
Default constructor.
Value-initializes
the stored invocable object and all adapted
view
objects.
The default constructor is deleted if
-
Fdoes not satisfydefault_initializable, or -
std::is_default_constructible_v
is
false
for at least one type in
Views....
2)
Move constructs the stored invocable object from
fun
and every adapted
view
object from the corresponding view in
views...
.
Parameters
| f | - |
invocable object used for generation of elements of
zip_transform_view
|
| views | - | view objects to adapt |
Example
|
This section is incomplete
Reason: no example |