C++ named requirements: ReversibleContainer - cppreference.com (original) (raw)

A ReversibleContainer is a Container that has iterators that meet the requirements of either LegacyBidirectionalIterator or LegacyRandomAccessIterator. Such iterators allow a ReversibleContainer to be iterated over in reverse.

Contents

[edit] Requirements

A type satisfies ReversibleContainer if it satisfies Container, its iterator type belongs to the bidirectional or random access iterator categories and, given the following types and values, the semantic and complexity requirements in the tables below are satisfied:

Type Definition
X an ReversibleContainer type
T the value_type of X
Value Definition
a a value of type X

[edit] Types

Name Type Requirements
typename X::reverse_iterator std::reverse_iterator<X::iterator> an iterator type whose value type is T
typename X::const_reverse_iterator std::reverse_iterator<X::const_iterator> a constant iterator type whose value type is T

[edit] Expressions

The types reverse_iterator and const_reverse_iterator in the following table denote typename X::reverse_iterator and typename X::const_reverse_iterator respectively.

Expression Type Semantics Complexity
a.rbegin() reverse_iteratorconst_reverse_iterator for constant a reverse_iterator(a.end()) Constant
a.rend() reverse_iteratorconst_reverse_iterator for constant a reverse_iterator(a.begin()) Constant
a.crbegin() const_reverse_iterator const_cast<const X&>(a).rbegin() Constant
a.crend() const_reverse_iterator const_cast<const X&>(a).rend() Constant

[edit] Library types

The following standard library types satisfy ReversibleContainer requirements:

array(C++11) fixed-sized inplace contiguous array (class template) [edit]
deque double-ended queue (class template) [edit]
list doubly-linked list (class template) [edit]
vector resizable contiguous array (class template) [edit]
inplace_vector(C++26) resizable, fixed capacity, inplace contiguous array (class template) [edit]
map collection of key-value pairs, sorted by keys, keys are unique (class template) [edit]
multimap collection of key-value pairs, sorted by keys (class template) [edit]
set collection of unique keys, sorted by keys (class template) [edit]
multiset collection of keys, sorted by keys (class template) [edit]

[edit] Example

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

DR Applied to Behavior as published Correct behavior
LWG 2105 C++98 typename X::const_reverse_iterator wasrequired to be an iterator type of value type const T required to be a constantiterator type of value type T