std::hive<T,Allocator>::rend, std::hive<T,Allocator>::crend

来自cppreference.com
 
 
 
 
reverse_iterator rend() noexcept;
(1) (C++26 起)
const_reverse_iterator rend() const noexcept;
(2) (C++26 起)
const_reverse_iterator crend() const noexcept;
(3) (C++26 起)

返回指向逆向的 hive 末元素后一元素的逆向迭代器。它对应非逆向 hive 首元素的前一元素。此元素表现为占位符,试图访问它导致未定义行为。

返回值

指向末元素后一元素的逆向迭代器。

复杂度

常数。

示例

参阅

返回指向起始的逆向迭代器
(公开成员函数) [编辑]
(C++14)
返回容器或数组的逆向尾迭代器
(函数模板) [编辑]
Morty Proxy This is a proxified and sanitized view of the page, visit original site.