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
100
101
102
103
104
105
106
107
108
|
/*
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Forward.h>
namespace AK {
template<typename Container, typename ValueType>
class SimpleReverseIterator {
public:
friend Container;
constexpr bool is_end() const { return m_index == SimpleReverseIterator::rend(m_container).m_index; }
constexpr int index() const { return m_index; }
constexpr bool operator==(SimpleReverseIterator other) const { return m_index == other.m_index; }
constexpr bool operator!=(SimpleReverseIterator other) const { return m_index != other.m_index; }
constexpr bool operator<(SimpleReverseIterator other) const { return m_index < other.m_index; }
constexpr bool operator>(SimpleReverseIterator other) const { return m_index > other.m_index; }
constexpr bool operator<=(SimpleReverseIterator other) const { return m_index <= other.m_index; }
constexpr bool operator>=(SimpleReverseIterator other) const { return m_index >= other.m_index; }
constexpr SimpleReverseIterator operator+(int delta) const { return SimpleReverseIterator { m_container, m_index - delta }; }
constexpr SimpleReverseIterator operator-(int delta) const { return SimpleReverseIterator { m_container, m_index + delta }; }
constexpr SimpleReverseIterator operator++()
{
--m_index;
return *this;
}
constexpr SimpleReverseIterator operator++(int)
{
--m_index;
return SimpleReverseIterator { m_container, m_index + 1 };
}
constexpr SimpleReverseIterator operator--()
{
++m_index;
return *this;
}
constexpr SimpleReverseIterator operator--(int)
{
++m_index;
return SimpleReverseIterator { m_container, m_index - 1 };
}
ALWAYS_INLINE constexpr ValueType const& operator*() const { return m_container[m_index]; }
ALWAYS_INLINE constexpr ValueType& operator*() { return m_container[m_index]; }
ALWAYS_INLINE constexpr ValueType const* operator->() const { return &m_container[m_index]; }
ALWAYS_INLINE constexpr ValueType* operator->() { return &m_container[m_index]; }
SimpleReverseIterator& operator=(const SimpleReverseIterator& other)
{
m_index = other.m_index;
return *this;
}
SimpleReverseIterator(SimpleReverseIterator const& obj) = default;
private:
static constexpr SimpleReverseIterator rbegin(Container& container)
{
using RawContainerType = RemoveCV<Container>;
if constexpr (IsSame<StringView, RawContainerType> || IsSame<String, RawContainerType>)
return { container, static_cast<int>(container.length()) - 1 };
else
return { container, static_cast<int>(container.size()) - 1 };
}
static constexpr SimpleReverseIterator rend(Container& container)
{
return { container, -1 };
}
constexpr SimpleReverseIterator(Container& container, int index)
: m_container(container)
, m_index(index)
{
}
Container& m_container;
int m_index { 0 };
};
namespace ReverseWrapper {
template<typename Container>
struct ReverseWrapper {
Container& container;
};
template<typename Container>
auto begin(ReverseWrapper<Container> wrapper) { return wrapper.container.rbegin(); }
template<typename Container>
auto end(ReverseWrapper<Container> wrapper) { return wrapper.container.rend(); }
template<typename Container>
ReverseWrapper<Container> in_reverse(Container&& container) { return { container }; }
}
}
|