std::ranges::enumerate_view<V>::sentinel
来自 cppreference.com
< cpp | ranges | enumerate view
template< bool Const > class /*sentinel*/; |
(自 C++23 起) (仅供说明*) |
|
当基础视图不是 common_range
时,enumerate_view::end
的返回类型。
类型 /*sentinel*/<true> 由 const 限定的重载返回。类型 /*sentinel*/<false> 由非 const 限定的重载返回。
内容 |
[编辑] 成员类型
成员类型 | 定义 |
Base (私有) |
const V 如果 Const 为 true,否则为 V.(仅供说明成员类型*) |
[编辑] 数据成员
成员对象 | 定义 |
end_ (私有) |
类型为 ranges::sentinel_t<Base> 的哨兵 (仅供说明成员对象*) |
[编辑] 成员函数
构造一个哨兵 (公共成员函数) | |
返回一个指示范围结束的哨兵 (公共成员函数) |
[编辑] 非成员函数
(C++23) |
将一个哨兵与从 enumerate_view::begin 返回的迭代器进行比较 (函数) |
(C++23) |
计算从 enumerate_view::begin 返回的哨兵和迭代器之间的距离 (函数) |
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 参考文献
- C++23 标准 (ISO/IEC 14882:2024)
- 26.7.23.4 类模板
enumerate_view::sentinel
[range.enumerate.sentinel]
- 26.7.23.4 类模板