命名空间
变体
操作

operator-(std::counted_iterator<I>, std::default_sentinel_t)

来自 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)
 
 
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)
计算两个迭代器适配器之间的距离
(函数模板) [编辑]
用于知道其范围边界的迭代器的默认哨兵
(类) [编辑]