blob: 168a2697318220be9062a20807e026ea414b8697 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
//===-- Standalone implementation of iterator -------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_ITERATOR_H
#define LLVM_LIBC_SRC___SUPPORT_CPP_ITERATOR_H
#include "src/__support/CPP/type_traits/enable_if.h"
#include "src/__support/CPP/type_traits/is_convertible.h"
#include "src/__support/CPP/type_traits/is_same.h"
#include "src/__support/macros/attributes.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
namespace cpp {
template <typename T> struct iterator_traits;
template <typename T> struct iterator_traits<T *> {
using reference = T &;
using value_type = T;
};
template <typename Iter> class reverse_iterator {
Iter current;
public:
using reference = typename iterator_traits<Iter>::reference;
using value_type = typename iterator_traits<Iter>::value_type;
using iterator_type = Iter;
LIBC_INLINE reverse_iterator() : current() {}
LIBC_INLINE constexpr explicit reverse_iterator(Iter it) : current(it) {}
template <typename Other,
cpp::enable_if_t<!cpp::is_same_v<Iter, Other> &&
cpp::is_convertible_v<const Other &, Iter>,
int> = 0>
LIBC_INLINE constexpr explicit reverse_iterator(const Other &it)
: current(it) {}
LIBC_INLINE friend constexpr bool operator==(const reverse_iterator &lhs,
const reverse_iterator &rhs) {
return lhs.base() == rhs.base();
}
LIBC_INLINE friend constexpr bool operator!=(const reverse_iterator &lhs,
const reverse_iterator &rhs) {
return lhs.base() != rhs.base();
}
LIBC_INLINE friend constexpr bool operator<(const reverse_iterator &lhs,
const reverse_iterator &rhs) {
return lhs.base() > rhs.base();
}
LIBC_INLINE friend constexpr bool operator<=(const reverse_iterator &lhs,
const reverse_iterator &rhs) {
return lhs.base() >= rhs.base();
}
LIBC_INLINE friend constexpr bool operator>(const reverse_iterator &lhs,
const reverse_iterator &rhs) {
return lhs.base() < rhs.base();
}
LIBC_INLINE friend constexpr bool operator>=(const reverse_iterator &lhs,
const reverse_iterator &rhs) {
return lhs.base() <= rhs.base();
}
LIBC_INLINE constexpr iterator_type base() const { return current; }
LIBC_INLINE constexpr reference operator*() const {
Iter tmp = current;
return *--tmp;
}
LIBC_INLINE constexpr reverse_iterator operator--() {
++current;
return *this;
}
LIBC_INLINE constexpr reverse_iterator &operator++() {
--current;
return *this;
}
LIBC_INLINE constexpr reverse_iterator operator++(int) {
reverse_iterator tmp(*this);
--current;
return tmp;
}
};
} // namespace cpp
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_ITERATOR_H
|