operator-(std::counted_iterator<I>, std::default_sentinel_t)
来自 cppreference.com
< cpp | iterator | counted iterator
friend constexpr std::iter_difference_t<I> operator-( const counted_iterator& x, std::default_sentinel_t ); |
(1) | (自 C++20 起) |
friend constexpr std::iter_difference_t<I> operator-( std::default_sentinel_t, const counted_iterator& y ); |
(2) | (自 C++20 起) |
1) 返回到结尾的负距离。
2) 返回到结尾的正距离。
此函数模板对普通 非限定 或 限定查找 不可見,并且只能通过 依赖于参数的查找 在 std::counted_iterator<I> 是参数的关联类时找到。
内容 |
[编辑] 参数
x, y | - | 迭代器适配器,用于计算差值 |
[编辑] 返回值
1) -x.count()
2) y.count()
[编辑] 示例
运行此代码
#include <initializer_list> #include <iterator> int main() { constexpr static auto v = {1, 2, 3, 4}; constexpr std::counted_iterator<std::initializer_list<int>::iterator> it{v.begin(), 3}; constexpr auto d1 = it - std::default_sentinel; static_assert(d1 == -3); // (1) constexpr auto d2 = std::default_sentinel - it; static_assert(d2 == +3); // (2) }
[编辑] 参见
使迭代器前进或后退 (公有成员函数) | |
(C++20) |
使迭代器前进 (函数模板) |
(C++20) |
计算两个迭代器适配器之间的距离 (函数模板) |
(C++20) |
用于知道其范围边界的迭代器的默认哨兵 (类) |