命名空间
变体
操作

operator==(ranges::zip_transform_view::sentinel)

来自 cppreference.com
 
 
范围库
范围适配器
 
 
template< bool OtherConst >

    requires std::sentinel_for</*zentinel*/<Const>, /*ziperator*/<OtherConst>>
friend constexpr bool operator==( const /*iterator*/<OtherConst>& x,

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

x 的底层迭代器与 y 的底层哨兵进行比较。

此函数模板对普通 非限定限定查找不可见,并且仅在 zip_transform_view::sentinel 是参数的关联类时才能通过 依赖于参数的查找找到。

!= 运算符从 operator==合成

[编辑] 参数

x - 迭代器 用于比较
y - 哨兵 用于比较

[编辑] 返回值

x.inner_ == y.inner_,其中 inner_ 分别表示底层迭代器或哨兵。

[编辑] 示例