Searched refs:const_reverse_iterator (Results 1 – 3 of 3) sorted by relevance
133 using const_reverse_iterator = std::reverse_iterator<const_iterator>; variable263 … constexpr const_reverse_iterator rbegin() const noexcept // NOLINT(readability-identifier-naming) in rbegin()279 …constexpr const_reverse_iterator crbegin() const noexcept // NOLINT(readability-identifier-naming) in crbegin()315 constexpr const_reverse_iterator rend() const noexcept // NOLINT(readability-identifier-naming) in rend()331 … constexpr const_reverse_iterator crend() const noexcept // NOLINT(readability-identifier-naming) in crend()
204 using const_reverse_iterator = Iterator<const T, true>; variable370 return const_reverse_iterator(&operator[](size() - 1)); in rbegin()378 return const_reverse_iterator(&operator[](size() - 1)); in crbegin()382 return const_reverse_iterator(&operator[](0) - 1); in rend()390 return const_reverse_iterator(&operator[](0) - 1); in crend()
50 typename std::vector<T>::const_reverse_iterator elem; in WrapArray()