std::rend, std::crend

来自cppreference.com
 
 
迭代器库
迭代器概念
迭代器原语
算法概念与工具
间接可调用概念
常用算法要求
(C++20)
(C++20)
(C++20)
工具
(C++20)
迭代器适配器
范围访问
(C++11)(C++14)
(C++14)(C++14)  
(C++11)(C++14)
(C++14)(C++14)  
(C++17)(C++20)
(C++17)
(C++17)
 
在标头 <array> 定义
在标头 <deque> 定义
在标头 <flat_map> 定义
在标头 <flat_set> 定义
在标头 <forward_list> 定义
在标头 <inplace_vector> 定义
在标头 <iterator> 定义
在标头 <list> 定义
在标头 <map> 定义
在标头 <regex> 定义
在标头 <set> 定义
在标头 <span> 定义
在标头 <string> 定义
在标头 <string_view> 定义
在标头 <unordered_map> 定义
在标头 <unordered_set> 定义
在标头 <vector> 定义
template< class C >
auto rend( C& c ) -> decltype(c.rend());
(1) (C++14 起)
(C++17 起为 constexpr)
template< class C >
auto rend( const C& c ) -> decltype(c.rend());
(2) (C++14 起)
(C++17 起为 constexpr)
template< class T, std::size_t N >
std::reverse_iterator<T*> rend( T (&array)[N] );
(3) (C++14 起)
(C++17 起为 constexpr)