std::ranges::zip_transform_view<F,Views...>::sentinel<Const>::sentinel
来自 cppreference.com
< cpp | ranges | zip transform view | sentinel
/*sentinel*/() = default; |
(1) | (自 C++23 起) |
constexpr /*sentinel*/( /*sentinel*/<!Const> i ) requires Const && |
(2) | (自 C++23 起) |
constexpr explicit /*sentinel*/( /*zentinel*/<Const> inner ); |
(3) | (仅供说明*) |
构造一个哨兵。
2) 从 /*sentinel*/<false> 转换为 /*sentinel*/<true>。 使用 std::move(i.inner_) 移动构造底层对象
inner_
。[编辑] 参数
i | - | 一个 /*sentinel*/<false> |
inner | - | 类型为 zentinel <Const> 的底层对象 |
[编辑] 示例
本节不完整 原因:没有示例 |