operator==(ranges::elements_view::sentinel)

来自cppreference.com
< cpp‎ | ranges‎ | elements view‎ | sentinel
 
 
范围库
范围访问
范围转换器
(C++23)
范围原语



悬垂迭代器处理
范围概念
视图

范围工厂
适配器
范围生成器
范围适配器对象
范围适配器闭包对象
辅助项
 
 
template< bool OtherConst >

  requires std::sentinel_for<ranges::sentinel_t<Base>,
    ranges::iterator_t</*maybe-const*/<OtherConst, V>>>
friend constexpr bool operator==( const /*iterator*/<OtherConst>& x,

                                  const /*sentinel*/& y );
(C++20 起)

比较 x 的底层迭代器与 y 的底层哨位。

此函数对通常无限定有限定查找不可见,而只能在 elements_view::sentinel<Const> 为参数的关联类时由实参依赖查找找到。

!= 运算符从 == 运算符合成

参数

x - 要比较的迭代器
y - 要比较的哨位

返回值

x.current_ == y.end_ ,其中 current_ 代表底层迭代器, end_ 代表底层哨位。

示例