Namespaces
Variants

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.

Return value

Reverse iterator to the element following the last element.

Complexity

Constant.

Example

See also

returns a reverse iterator to the beginning
(public member function) [edit]
(C++14)
returns a reverse end iterator for a container or array
(function template) [edit]
Morty Proxy This is a proxified and sanitized view of the page, visit original site.