命名空间
变体
操作

std::ranges::iota_view<W, Bound>::sentinel

来自 cppreference.com
< cpp‎ | ranges‎ | iota view
 
 
范围库
范围适配器
 
 
struct /*sentinel*/;
(仅供说明*)

ranges::iota_view<W, Bound>::sentinel 是由 end() 返回的可达哨兵的类型 ranges::iota_view<W, Bound>.

内容

[编辑] 数据成员

成员 定义
Bound bound_ 哨兵值
(仅供说明成员对象*)

[编辑] 成员函数

std::ranges::iota_view::sentinel::sentinel

/*sentinel*/() = default;
(1) (自 C++20 起)
constexpr explicit /*sentinel*/( Bound bound );
(2) (自 C++20 起)
1)bound_ 进行值初始化。
2)bound 初始化 bound_

[编辑] 非成员函数

operator==(std::ranges::iota_view::iterator, std::ranges::iota_view::sentinel)

friend constexpr bool operator==( const /*iterator*/& x,
                                  const /*sentinel*/& y );
(自 C++20 起)

返回 x.value_ == y.bound_.

!= 运算符是由 operator== 合成的.

此函数对普通的 非限定限定查找 不可見,只能通过 依赖于参数的查找sentinel 是参数的关联类时找到。

operator-(std::ranges::iota_view::iterator, std::ranges::iota_view::sentinel)

friend constexpr std::iter_difference_t<W>

    operator-(const /*iterator*/& x, const /*sentinel*/& y)

    requires std::sized_sentinel_for<Bound, W>;
(1) (自 C++20 起)
friend constexpr std::iter_difference_t<W>

    operator-(const /*sentinel*/& x, const /*iterator*/& y)

    requires std::sized_sentinel_for<Bound, W>;
(2) (自 C++20 起)
1) 返回 x.value_ - y.bound_.
2) 返回 -(y.value_ - x.bound_ ).

这些函数对普通的 非限定限定查找 不可見,只能通过 依赖于参数的查找sentinel 是参数的关联类时找到。

[编辑] 示例