命名空间
变体
操作

operator-(std::counted_iterator)

来自 cppreference.com
 
 
迭代器库
迭代器概念
迭代器原语
算法概念和实用程序
间接可调用概念
常见算法要求
(C++20)
(C++20)
(C++20)
实用程序
(C++20)
迭代器适配器
范围访问
(C++11)(C++14)
(C++14)(C++14)  
(C++11)(C++14)
(C++14)(C++14)  
(C++17)(C++20)
(C++17)
(C++17)
 
 
template< std::common_with<I> I2 >

    friend constexpr std::iter_difference_t<I2> operator-(

        const counted_iterator& x, const counted_iterator<I2>& y );
(自 C++20 起)

计算两个迭代器适配器之间的距离。

如果 xy 不指向同一个序列的元素,则行为未定义。也就是说,必须存在某个 n,使得 std::next(x.base(), x.count() + n)std::next(y.base(), y.count() + n) 指向同一个元素。

此函数模板对普通的 无限定限定查找 不可見,只有当 std::counted_iterator<I> 是参数的关联类时,才能通过 参数相关查找 找到它。

内容

[编辑] 参数

x, y - 要计算差值的迭代器适配器

[编辑] 返回值

y.count() - x.count()

[编辑] 备注

由于长度是递减的,而不是递增的,因此 operator- 中底层表达式的参数顺序被反转,即 ylhsxrhs

[编辑] 示例

#include <initializer_list>
#include <iterator>
 
int main()
{
    static constexpr auto v = {1, 2, 3, 4, 5, 6};
    constexpr std::counted_iterator<std::initializer_list<int>::iterator>
        it1{v.begin(), 5},
        it2{it1 + 3},
        it3{v.begin(), 2};
 
    static_assert(it1 - it2 == -3);
    static_assert(it2 - it1 == +3);
//  static_assert(it1 - it3 == -3); // UB: operands of operator- do not refer to
                                    // elements of the same sequence
}

[编辑] 另请参阅

推进或递减迭代器
(公有成员函数) [编辑]
(C++20)
推进迭代器
(函数模板) [编辑]
计算到末尾的带符号距离
(函数模板) [编辑]