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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
use crate::entry::{
NextOccupiedFromOccupied, NextOccupiedFromVacant, PrevOccupiedFromOccupied,
PrevOccupiedFromVacant,
};
use super::{
occupied_entry::{
EntryRemovableOccupiedEntry, InsertableOccupiedEntry, KeyedOccupiedEntry,
RemovableOccupiedEntry,
},
vacant_entry::{KeyedVacantEntry, VacantEntry},
};
pub enum Entry<Occ, Vac> {
Occupied(Occ),
Vacant(Vac),
}
impl<Occ, Vac> Entry<Occ, Vac> {
pub fn from_occupied(entry: Occ) -> Self {
Entry::Occupied(entry)
}
pub fn from_vacant(entry: Vac) -> Self {
Entry::Vacant(entry)
}
}
impl<'c, 'e, Occ, Vac> Entry<Occ, Vac>
where
'c: 'e,
Occ: KeyedOccupiedEntry<'c>,
Vac: KeyedVacantEntry<'c, Value = Occ::Value, Occupied = Occ, Key = Occ::Key>,
{
pub fn get_key(&'e self) -> &'e Occ::Key {
match self {
Entry::Occupied(e) => e.get_pair().0,
Entry::Vacant(e) => e.get_key(),
}
}
}
impl<'c, 'e, Occ, Vac> Entry<Occ, Vac>
where
'c: 'e,
Occ: KeyedOccupiedEntry<'c>,
Vac: KeyedVacantEntry<'c, Value = Occ::Value, Occupied = Occ>,
{
pub fn get_pair(&'e self) -> Result<(&'e Occ::Key, &'e Occ::Value), &'e Vac::Key> {
match self {
Entry::Occupied(e) => Ok(e.get_pair()),
Entry::Vacant(e) => Err(e.get_key()),
}
}
pub fn get_pair_mut(&'e mut self) -> Result<(&'e Occ::Key, &'e mut Occ::Value), &'e Vac::Key> {
match self {
Entry::Occupied(e) => Ok(e.get_pair_mut()),
Entry::Vacant(e) => Err(e.get_key()),
}
}
pub fn into_pair(self) -> Result<(Occ::BorrowedKey, &'c mut Occ::Value), Vac> {
match self {
Entry::Occupied(e) => Ok(e.into_pair()),
Entry::Vacant(e) => Err(e),
}
}
pub fn insert_into_entry(self, value: Occ::Value) -> (Self, Option<Occ::Value>) {
let (occupied, old_value) = self.occupy(value);
(Self::from_occupied(occupied), old_value)
}
pub fn occupy(self, value: Occ::Value) -> (Occ, Option<Occ::Value>) {
match self {
Entry::Occupied(e) => {
let mut e = e;
let value = e.replace_value(value);
(e, Some(value))
}
Entry::Vacant(e) => (e.occupy(value), None),
}
}
pub fn is_occupied(&'e self) -> bool {
matches!(self, Entry::Occupied(_))
}
pub fn is_vacant(&'e self) -> bool {
matches!(self, Entry::Vacant(_))
}
}
impl<'c, Occ, Vac> Entry<Occ, Vac>
where
Occ: EntryRemovableOccupiedEntry<'c, Vacant = Vac>,
{
pub fn remove_entry(self) -> (Self, Option<Occ::Value>) {
match self {
Entry::Occupied(occupied) => {
let (value, removed) = occupied.remove();
let entry = Occ::recover_removed_entry(removed);
(entry, Some(value))
}
Entry::Vacant(vacant) => (Entry::Vacant(vacant), None),
}
}
}
impl<'c, Occ, Vac> Entry<Occ, Vac>
where
Occ: RemovableOccupiedEntry<'c, Removed = Vac>,
{
pub fn vacate(self) -> (Vac, Option<Occ::Value>) {
match self {
Entry::Occupied(occupied) => {
let (value, vacant) = occupied.remove();
(vacant, Some(value))
}
Entry::Vacant(vacant) => (vacant, None),
}
}
}
impl<'c, Occ, Vac> Entry<Occ, Vac>
where
Occ: RemovableOccupiedEntry<'c, Removed = Vac>,
Occ: KeyedOccupiedEntry<'c>,
Vac: KeyedVacantEntry<'c, Key = Occ::Key, Occupied = Occ>,
{
pub fn remove_with_key(self) -> (Occ::Key, Option<Occ::Value>) {
let (vacant, value) = self.vacate();
(vacant.into_key(), value)
}
}
impl<'c, Occ, Vac> Entry<Occ, Vac>
where
Occ: InsertableOccupiedEntry<'c>,
Vac: VacantEntry<'c, Occupied = Occ, Value = Occ::Value>,
{
pub fn insert_new(self, value: Occ::Value) {
self.occupy_new(value);
}
pub fn occupy_new(self, value: Occ::Value) -> Occ {
match self {
Entry::Occupied(e) => e.insert_new(value),
Entry::Vacant(e) => e.occupy(value),
}
}
}
impl<'c, Occ, Vac> Entry<Occ, Vac>
where
Occ: NextOccupiedFromOccupied<'c>,
Occ::Key: Ord,
Vac: NextOccupiedFromVacant<'c, Occupied = Occ>,
{
pub fn get_next_occupied(self) -> Option<Occ> {
match self {
Entry::Occupied(e) => e.get_next_occupied(),
Entry::Vacant(e) => e.get_next_occupied(),
}
}
}
impl<'c, Occ, Vac> Entry<Occ, Vac>
where
Occ: PrevOccupiedFromOccupied<'c>,
Occ::Key: Ord,
Vac: PrevOccupiedFromVacant<'c, Occupied = Occ>,
{
pub fn get_prev_occupied(self) -> Option<Occ> {
match self {
Entry::Occupied(e) => e.get_prev_occupied(),
Entry::Vacant(e) => e.get_prev_occupied(),
}
}
}
pub enum EntryWithSearchKey<Occ, Vac, K> {
Occupied(Occ, K),
Vacant(Vac),
}
impl<'c, Occ, Vac, K> From<EntryWithSearchKey<Occ, Vac, K>> for Entry<Occ, Vac> {
fn from(entry: EntryWithSearchKey<Occ, Vac, K>) -> Self {
match entry {
EntryWithSearchKey::Occupied(e, _) => Entry::Occupied(e),
EntryWithSearchKey::Vacant(e) => Entry::Vacant(e),
}
}
}
pub trait IntoCollectionMut<'c> {
type Collection: 'c + ?Sized;
fn into_collection_mut(self) -> &'c mut Self::Collection;
}
impl<'c, Occ, Vec> IntoCollectionMut<'c> for Entry<Occ, Vec>
where
Occ: IntoCollectionMut<'c>,
Vec: IntoCollectionMut<'c, Collection = Occ::Collection>,
{
type Collection = Occ::Collection;
fn into_collection_mut(self) -> &'c mut Self::Collection {
match self {
Entry::Occupied(e) => e.into_collection_mut(),
Entry::Vacant(e) => e.into_collection_mut(),
}
}
}