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

来自cppreference.com
 
 
迭代器库
迭代器概念
迭代器原语
算法概念与工具
间接可调用概念
常用算法要求
工具
迭代器适配器
流迭代器
迭代器定制点
迭代器操作
(C++11)
(C++11)
范围访问
(C++11)(C++14)
(C++11)(C++14)
(C++17)(C++20)
(C++14)(C++14)
(C++14)(C++14)
(C++17)
(C++17)
 
 
friend constexpr bool operator==(
  const counted_iterator& x, std::default_sentinel_t );
(C++20 起)

检查底层长度(即到末尾的距离)是否等于 0

此函数模板对通常无限定有限定查找不可见,而只能在 std::counted_iterator<I> 为参数的关联类时由实参依赖查找找到。

!= 运算符从 operator== 合成

参数

x - 迭代器适配器

返回值

x.count() 等于 0 则为 true ,否则为 false

示例

#include <initializer_list>
#include <iterator>
 
int main()
{
    static constexpr auto v = {1, 2, 3, 4};
    constexpr std::counted_iterator<std::initializer_list<int>::iterator>
        it1 {v.begin(), 3},
        it2 {v.begin(), 0};
    static_assert( it1 != std::default_sentinel );
    static_assert( it2 == std::default_sentinel );
    static_assert( std::default_sentinel != it1 );
    static_assert( std::default_sentinel == it2 );
}

参阅

比较到末尾的距离
(函数模板)