命名空间
变体
操作

operator-(ranges::zip_transform_view::sentinel)

来自 cppreference.cn
 
 
范围库 (Ranges library)
范围适配器 (Range adaptors)
 
 
template< bool OtherConst >

    requires std::sized_sentinel_for</*zentinel*/<Const>, /*ziperator*/<OtherConst>>
friend constexpr ranges::range_difference_t</*maybe-const*/<OtherConst, /*InnerView*/>>

    operator-( const /*iterator*/<OtherConst>& x, const /*sentinel*/& y );
(1) (C++23 起)
template< bool OtherConst >

    requires std::sized_sentinel_for</*zentinel*/<Const>, /*ziperator*/<OtherConst>>
friend constexpr ranges::range_difference_t</*maybe-const*/<OtherConst, /*InnerView*/>>

    operator-( const /*sentinel*/& y, const /*iterator*/<OtherConst>& x );
(2) (C++23 起)

计算 x 的底层迭代器与 y 的底层哨兵之间的距离。

这些函数模板对于普通 非限定限定查找 不可见,只有当 zip_transform_view::sentinel 是参数的关联类时,才能通过 实参依赖查找 找到。

[编辑] 参数

x - 一个 迭代器
y - 一个 哨兵

[编辑] 返回值

inner_ 分别表示底层迭代器或哨兵。

1) x.inner_ - y.inner_
2) y.inner_ - x.inner_