CppDS.com

C++ 98 11 14 17 20 手册

std::ranges::cend

来自cppreference.com
< cpp‎ | ranges
定义于头文件 <ranges>
inline namespace /*unspecified*/ {

    inline constexpr /*unspecified*/ cend = /*unspecified*/;

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

    requires /* see below */

constexpr std::sentinel_for<ranges::iterator_t<T>> auto cend(T&& t);

返回指示 const 限定范围的末尾的哨位。

range-begin-end.svg

CT

  1. 若实参为左值(即 T 为左值引用类型)则为 const std::remove_reference_t<T>&
  2. 否则为 const T

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

ranges::cend(e) 对表达式 e 合法,其中 decltype((e))T ,则 CT 实现 std::ranges::range ,且所有情况下 std::sentinel_for<S, I>true ,其中 Sdecltype(ranges::cend(e))Idecltype(ranges::cbegin(e))

表达式等价

表达式 e 表达式等价于表达式 f ,若 ef 拥有相同效果,均为潜在抛出或均非潜在抛出(即 noexcept(e) == noexcept(f) ),且均为常量子表达式或均非常量子表达式。

定制点对象

名字 ranges::cend 代表一个定制点对象,它是字面 semiregular 类类型(为说明目的以 cend_ftor 表示)的 const 函数对象cend_ftor 的所有实例均相等。从而能自由地复制 ranges::cend ,且能交替使用其副本。

给定类型集合 Args... ,若 std::declval<Args>()... 满足上面对于 ranges::cend 的参数要求,则 cend_ftor 将满足 std::invocable<const cend_ftor&, Args...> 。否则, cend_ftor 的函数调用运算符不参与重载决议。

示例

#include <algorithm>
#include <iostream>
#include <ranges>
#include <vector>
 
int main() 
{
    std::vector<int> v = { 3, 1, 4 };
    namespace ranges = std::ranges;
    if (ranges::find(v, 5) != ranges::cend(v)) {
        std::cout << "found a 5 in vector v!\n";
    }
 
    int a[] = { 5, 10, 15 };
    if (ranges::find(a, 5) != ranges::cend(a)) {
        std::cout << "found a 5 in array a!\n";
    }
}

输出:

found a 5 in array a!

参阅

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