std::ranges::split_view<V,Pattern>::sentinel
来自 cppreference.cn
< cpp | ranges | split view
class /*sentinel*/; |
(C++20 起) (仅作说明*) |
|
当底层 view
类型 V
不建模 common_range
时,split_view::end 的返回类型。
目录 |
[编辑] 数据成员
成员 | 描述 |
ranges::sentinel_t<V> end_ (私有) |
底层 view 的哨兵(仅用于阐释的成员对象*) |
[编辑] 成员函数
(构造函数) (C++20) |
构造一个哨位 (公开成员函数) |
std::ranges::split_view::sentinel::sentinel
/*sentinel*/() = default; |
(1) | (C++20 起) |
constexpr explicit /*sentinel*/( ranges::split_view& parent ); |
(2) | (C++20 起) |
[编辑] 非成员函数
operator== (C++20) |
比较底层迭代器和底层哨兵 (函数) |
operator==(std::ranges::split_view::iterator, std::ranges::split_view::sentinel)
friend constexpr bool operator==( const /*iterator*/& x, const /*sentinel*/& y ); |
(C++20 起) | |
等价于 return x.cur_ == y.end_ and !x.trailing_empty_;。
!=
运算符由 operator==
合成。
此函数对于普通的非限定查找或限定查找不可见,并且只能通过实参依赖查找找到,当 std::ranges::split_view::sentinel
是实参的关联类时。