operator==(ranges::adjacent_view::iterator, ranges::adjacent_view::sentinel)

来自cppreference.com
< cpp‎ | ranges‎ | adjacent 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++23 起)

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

等价于:return x.current_.back() == y.end_,其中 current_x 的底层迭代器数组,并且 end_y 的底层哨位。

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

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

参数

x - 迭代器
y - 哨位

返回值

如果存储在 x 中的底层迭代器是尾迭代器则为 true

示例