命名空间
变体
操作

operator==,<,>,<=,>=,<=>(ranges::chunk_view::iterator)

来自 cppreference.com
< cpp‎ | ranges‎ | chunk view‎ | iterator
 
 
范围库
范围适配器
 
std::ranges::chunk_view
成员函数
用于 input_ranges 的类
推导指南
outer-iterator
outer-iterator::value_type
inner-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 起)
friend constexpr bool operator<( const /*iterator*/& x, const /*iterator*/& y )
    requires ranges::random_access_range<Base>;
(3) (自 C++23 起)
friend constexpr bool operator>( const /*iterator*/& x, const /*iterator*/& y )
    requires ranges::random_access_range<Base>;
(4) (自 C++23 起)
friend constexpr bool operator<=( const /*iterator*/& x, const /*iterator*/& y )
    requires ranges::random_access_range<Base>;
(5) (自 C++23 起)
friend constexpr bool operator>=( const /*iterator*/& x, const /*iterator*/& y )
    requires ranges::random_access_range<Base>;
(6) (自 C++23 起)
friend constexpr auto operator<=>( const /*iterator*/& x, const /*iterator*/& y )

    requires ranges::random_access_range<Base> &&

             std::three_way_comparable<ranges::iterator_t<Base>>;
(7) (自 C++23 起)

比较底层迭代器(或底层迭代器和默认哨兵 (2))。

current_end_ 为底层 数据成员

等效于

1) return x.current_ == y.current_;.
2) return x.current_ == x.end_;.
3) return x.current_ < y.current_;.
4) return y < x;.
5) return !(y < x);.
6) return !(x < y);.
7) return x.current_ <=> y.current_;.

这些函数对普通的 非限定限定查找 不可見,并且只能通过 参数依赖查找std::ranges::chunk_view::iterator<Const> 是参数的关联类时才能找到。

!= 运算符是 operator== 合成的

内容

[编辑] 参数

x, y - 要比较的 迭代器

[编辑] 返回值

比较的结果。

[编辑] 示例

[编辑] 参见