operator-(ranges::adjacent_view::sentinel)
来自 cppreference.com
< cpp | ranges | adjacent view | sentinel
template< bool OtherConst > requires std::sized_sentinel_for<ranges::sentinel_t<Base>, |
(1) | (自 C++23 起) |
template< bool OtherConst > requires std::sized_sentinel_for<ranges::sentinel_t<Base>, |
(2) | (自 C++23 起) |
计算 x 的底层迭代器和 y 的底层哨兵之间的距离。
令 current_
表示 x 中的底层迭代器数组,end_
表示 y 中的底层哨兵。
1) 等效于: return x.current_.back() - y.end_;
2) 等效于: return y.end_ - x.current_.back();
这些函数模板对普通的 无限定 或 限定查找 不可見,只有当 adjacent_view::sentinel
是参数的关联类时,才能通过 参数相关查找 找到它们。
内容 |
[编辑] 参数
x | - | 一个 迭代器 |
y | - | 一个 哨兵 |
[编辑] 返回值
x 和 y 之间的距离。
[编辑] 示例
本节尚未完善 原因:无示例 |