命名空间
变体
操作

std::ranges::cend

来自 cppreference.cn
< cpp‎ | ranges
 
 
范围库 (Ranges library)
范围适配器 (Range adaptors)
 
定义于头文件 <ranges>
定义于头文件 <iterator>
inline namespace /* 未指定 */ {

    inline constexpr /* 未指定 */ cend = /* 未指定 */;

}
(C++20 起)
(定制点对象)
调用签名 (Call signature)
template< class T >

    requires /* 见下文 */

constexpr /* 见下文 */ auto cend( T&& t );
(C++20 起)

返回一个指示 const-qualified(C++23 前) 范围末尾的哨兵,用于常量迭代器(C++23 起)

range-begin-end.svg

CT

  • 若参数是左值(即 T 是左值引用类型),则为 const std::remove_reference_t<T>&
  • const T 否则。

ranges::cend 的调用与 ranges::end(static_cast<CT&&>(t)) 表达式等价

(直至 C++23)

如果参数是左值或 ranges::enable_borrowed_range<std::remove_cv_t<T>>true,则对 ranges::cend 的调用与以下表达式 表达式等价

在所有其他情况下,对 ranges::cend 的调用是 ill-formed,这可能导致当调用出现在模板实例化的直接上下文中时发生 替换失败

(C++23 起)

如果 ranges::cend(e) 对于表达式 e 有效,其中 decltype((e))T,那么 CT 建模 std::ranges::range,且(C++23 前) 在所有情况下 std::sentinel_for<S, I>true,其中 Sdecltype(ranges::cend(e))Idecltype(ranges::cbegin(e))此外,如果 S 建模 input_iterator,则 S 建模 constant-iterator(C++23 起)

自定义点对象

名称 ranges::cend 表示一个定制点对象,它是一个 const 函数对象,其类型为 字面量 semiregular 类类型。为了解释目的,其类型的 cv-unqualified 版本表示为 __cend_fn

__cend_fn 的所有实例都相等。在相同参数上调用类型为 __cend_fn 的不同实例的效果是等价的,无论表示该实例的表达式是左值还是右值,以及是否 const-qualified(但是,volatile-qualified 实例不要求可调用)。因此,ranges::cend 可以自由复制,并且其副本可以互换使用。

给定一组类型 Args...,如果 std::declval<Args>()... 满足上述 ranges::cend 参数的要求,则 __cend_fn 建模:

否则,__cend_fn 的任何函数调用运算符都不参与重载决议。

[编辑] 示例

#include <algorithm>
#include <cassert>
#include <ranges>
#include <vector>
 
int main()
{
    std::vector vec{3, 1, 4};
    int arr[]{5, 10, 15};
 
    assert(std::ranges::find(vec, 5) == std::ranges::cend(vec));
    assert(std::ranges::find(arr, 5) != std::ranges::cend(arr));
}

[编辑] 参阅

返回指示范围末尾的哨兵
(定制点对象)[编辑]
(C++11)(C++14)
返回指向容器或数组末尾的迭代器
(函数模板) [编辑]