std::ranges::take_view<V>::sentinel
来自cppreference.com
template< bool Const > class /*sentinel*/ |
(C++20 起) | |
底层类型不是 sized_range
时 take_view::end
的返回类型。
const 限定重载返回 /*sentinel*/<true> 类型。非 const 限定重载返回 /*sentinel*/<false> 类型。
此类模板的名字(此处展示为 /*sentinel*/ )是未指明的。
典型实现仅保有一个数据成员:从(可能为 const 限定的) V
获得的哨位。
成员类型
成员类型 | 定义 |
Base (私有)
|
若 Const 为 true 则为 const V ,否则为 V 。名称仅用于阐释
|
成员函数
(C++20) |
构造哨位 (公开成员函数) |
(C++20) |
返回底层哨位 (公开成员函数) |
非成员函数
(C++20) |
比较哨位与从 take_view::begin 返回的迭代器 (函数) |