std::ranges::crend
定义于头文件 <ranges>
|
||
inline namespace /*unspecified*/ { inline constexpr /*unspecified*/ crend = /*unspecified*/; |
(C++20 起) (定制点对象) |
|
调用签名 |
||
template< class T > requires /* see below */ |
||
返回指示被当作逆向序列的 const 限定范围结尾的哨位。
令 CT
- 若实参为左值(即
T
为左值引用类型)则为 const std::remove_reference_t<T>& , - 否则为 const T ,
则调用 ranges::crbegin
表达式等价于 ranges::rend(static_cast<CT&&>(t)) 。
若 ranges::crend(e) 对于表达式 e 合法,则 std::sentinel_for<S, I> 在所有情况下为 true ,其中 S
为 decltype(ranges::crend(e)) 而 I
为 decltype(ranges::crbegin(e)) 。
表达式等价
表达式 e 表达式等价于表达式 f ,若 e 与 f 拥有相同效果,均为潜在抛出或均非潜在抛出(即 noexcept(e) == noexcept(f) ),且均为常量子表达式或均非常量子表达式。
定制点对象
名字 ranges::crend
代表一个定制点对象,它是字面 semiregular 类类型(为说明目的以 crend_ftor
表示)的 const 函数对象。crend_ftor
的所有实例均相等。从而能自由地复制 ranges::crend
,且能交替使用其副本。
给定类型集合 Args...
,若 std::declval<Args>()... 满足上面对于 ranges::crend
的参数要求,则 crend_ftor
将满足 std::invocable<const crend_ftor&, Args...> 。否则, crend_ftor
的函数调用运算符不参与重载决议。
示例
运行此代码
#include <iostream> #include <vector> #include <iterator> #include <algorithm> int main() { int a[] = {4, 6, -3, 9, 10}; std::cout << "Array backwards: "; namespace ranges = std::ranges; ranges::copy(ranges::rbegin(a), ranges::rend(a), std::ostream_iterator<int>(std::cout, " ")); std::cout << "\nVector backwards: "; std::vector<int> v = {4, 6, -3, 9, 10}; ranges::copy(ranges::rbegin(v), ranges::rend(v), std::ostream_iterator<int>(std::cout, " ")); }
输出:
Array backwards: 10 9 -3 6 4 Vector backwards: 10 9 -3 6 4
参阅
(C++20) |
返回指向范围的逆向尾迭代器 (定制点对象) |
(C++14) |
返回容器或数组的逆向尾迭代器 (函数模板) |