std::hive<T,Allocator>::rend, std::hive<T,Allocator>::crend
From cppreference.com
reverse_iterator rend() noexcept;
|
(1) | (since C++26) |
const_reverse_iterator rend() const noexcept;
|
(2) | (since C++26) |
const_reverse_iterator crend() const noexcept;
|
(3) | (since C++26) |
Returns a reverse iterator to the element following the last element of the reversed hive. It corresponds to the element preceding the first element of the non-reversed hive. This element acts as a placeholder, attempting to access it results in undefined behavior.
Contents
Return value
Reverse iterator to the element following the last element.
Complexity
Constant.
Example
| This section is incomplete Reason: no example |
See also
| returns a reverse iterator to the beginning (public member function) | |
(C++14) |
returns a reverse end iterator for a container or array (function template) |