std::ranges::view_interface<D>::cend

来自cppreference.com
 
 
范围库
范围访问
范围转换器
(C++23)
范围原语



悬垂迭代器处理
范围概念
视图

范围工厂
适配器
范围生成器
范围适配器对象
范围适配器闭包对象
辅助项
 
std::ranges::view_interface
成员函数
(C++20)
(C++23)
cend
(C++23)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
 
constexpr auto cend();
(1) (C++23 起)
constexpr auto cend() const requires ranges::range<const D>;
(2) (C++23 起)

cend() 成员函数的默认实现返回针对常量迭代器的范围哨位。

range-begin-end.svg

1)derived 为绑定到 static_cast<D&>(*this) 的引用。等价于 return ranges::cend(derived);
2)(1) ,除了 derivedstatic_cast<const D&>(*this)

参数

(无)

返回值

针对常量迭代器的范围哨位。

注解

标准库中的所有范围适配器及范围工厂和 std::ranges::subrange 都使用 cend 的默认实现。

示例

参阅

(C++11)(C++14)
返回指向容器或数组结尾的迭代器
(函数模板)
返回指示只读范围结尾的哨位
(定制点对象)