std::ranges::zip_view<Views...>::sentinel<Const>::sentinel

来自cppreference.com
< cpp‎ | ranges‎ | zip view‎ | sentinel
 
 
范围库
范围适配器
 
 
/*sentinel*/() = default;
(1) (C++23 起)
constexpr /*sentinel*/( /*sentinel*/<!Const> i )

    requires Const &&
        (std::convertible_to<
            ranges::sentinel_t<Views>,

            ranges::sentinel_t</*maybe-const*/<Const, Views>>> && ...);
(2) (C++23 起)

构造哨位。

1) 默认构造函数。值初始化底层哨位元组 end_
2)/*sentinel*/<false>/*sentinel*/<true> 的转换。以 std::move(i.end_) 移动构造底层的哨位元组 end_

参数

i - /*sentinel*/<false>

示例