std::ranges::zip_view<Views...>::sentinel<Const>::sentinel
From cppreference.com
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_view
Member functions
zip_view::sentinel::sentinel
Non-member functions
/*sentinel*/() = default;
(1)
(since C++23)
constexpr /*sentinel*/( /*sentinel*/<!Const> i )
(2)
(since C++23)
requires Const &&
(std::convertible_to <
ranges::sentinel_t <Views>,
Constructs a sentinel.
2) Conversion from /*sentinel*/<false> to /*sentinel*/<true>. Move constructs the underlying tuple of sentinels
end_
with std::move(i.end_).[edit] Parameters
i
-
a /*sentinel*/<false>
[edit] Example
This section is incomplete
Reason: no example
Reason: no example