operator-(ranges::zip_transform_view::sentinel)
来自 cppreference.com
< cpp | ranges | zip transform view | sentinel
template< bool OtherConst > requires std::sized_sentinel_for</*zentinel*/<Const>, /*ziperator*/<OtherConst>> |
(1) | (自 C++23 起) |
template< bool OtherConst > requires std::sized_sentinel_for</*zentinel*/<Const>, /*ziperator*/<OtherConst>> |
(2) | (自 C++23 起) |
计算x的底层迭代器与y的底层哨兵之间的距离。
这些函数模板对普通的非限定或限定查找不可见,只有在zip_transform_view::sentinel
是参数的关联类时,才能通过依赖于参数的查找找到它们。
[编辑] 参数
x | - | 一个迭代器 |
y | - | 一个哨兵 |
[编辑] 返回值
令inner_
分别表示底层迭代器或哨兵。
1) x.inner_ - y.inner_
2) y.inner_ - x.inner_