std::ranges::rend

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

    inline constexpr /*unspecified*/ rend = /*unspecified*/;

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

    requires /* see below */

constexpr std::sentinel_for<decltype(ranges::rbegin(std::declval<T>()))> auto rend(T&& t);

获得指示逆向范围末尾的迭代器。

range-rbegin-rend.svg

tT 类型对象。若实参为左值或 ranges::enable_borrowed_range<std::remove_cv_t<T>>true ,则对 ranges::rend 的调用表达式等价于:

  1. std::forward<T>(t).rend() 转换到其衰变类型,若该带转换的表达式合法,且其转换后的类型实现 std::sentinel_for<decltype(ranges::rbegin(std::declval<T>()))>
  2. 否则为 rend(std::forward<T>(t)) 转换到其衰变类型,若 T 为类或枚举类型,带转换的前述无限定调用合法,且其转换后的类型实现 std::sentinel_for<decltype(ranges::rbegin(std::declval<T>()))> ,其中以下列候选进行重载决议
    • void rend(auto&) = delete;
    • void rend(const auto&) = delete;
    • 实参依赖查找所找到的任何 rend 声明。
  3. 否则为 std::make_reverse_iterator(ranges::begin(std::forward<T>(t))) ,若 ranges::begin(std::forward<T>(t))ranges::end(std::forward<T>(t)) 均为合法表达式,拥有相同类型,且该类型实现 std::bidirectional_iterator

所有其他情况下,调用 ranges::rend 为非良构,这能在 ranges::rend(t) 出现于模板实例化的立即语境时导致替换失败

表达式等价

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

定制点对象

名字 ranges::rend 代表一个定制点对象,它是字面 semiregular 类类型的 const 函数对象。为说明目的,以 __rend_fn 表示其类型的 cv 无限定版本。

__rend_fn 的所有实例均相等。在相同参数上调用类型 __rend_fn 的不同实例的效果是等价的,无关乎指代该实例的表达式是左值还是右值,以及是否为 const 限定(然而不要求 volatile 限定的实例可调用)。从而能自由地复制 ranges::rend 并且能彼此替代地使用其副本。

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

注解

若实参为右值(即 T 为对象类型)且 ranges::enable_borrowed_range<std::remove_cv_t<T>>false ,则调用 ranges::rend 非良构,这亦导致替换失败。

ranges::rend(std::forward<T>(t)) 合法,则 decltype(ranges::rend(std::forward<T>(t)))decltype(ranges::begin(std::forward<T>(t))) 在所有情况下实现 std::sentinel_for ,同时 T 实现 std::ranges::range

C++20 标准要求若底层 rend 函数调用返回纯右值,则从实质化的临时对象移动构造返回值。所有实现均直接返回纯右值。 C++20 后的提案 P0849R8 更正了该要求以匹配实现。

示例

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

输出:

found a 5 in array 'a'!

参阅

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