operator==(ranges::chunk_by_view::iterator)

来自cppreference.com
< cpp‎ | ranges‎ | chunk by view‎ | iterator


 
 
范围库
范围适配器
 
 
friend constexpr bool operator==( const /*iterator*/& x, const /*iterator*/& y );
(1) (C++23 起)
friend constexpr bool operator==( const /*iterator*/& x, std::default_sentinel_t );
(2) (C++23 起)

比较底层迭代器。

1) 等价于 return x.current_ == y.current_;
2) 等价于 return x.current_ == x.next_;

此函数对常规的无限定有限定查找不可见,而只能在 std::ranges::chunk_by_view::iterator 为实参的关联类时由实参依赖查找找到。

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

参数

x, y - 要比较的迭代器

返回值

比较的结果。

示例