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
use crate::storage::Storage;
use std::mem;
pub struct BooleanStorage<V: 'static> {
t: Option<V>,
f: Option<V>,
}
impl<V: 'static> Clone for BooleanStorage<V>
where
V: Clone,
{
fn clone(&self) -> Self {
BooleanStorage {
t: self.t.clone(),
f: self.f.clone(),
}
}
}
impl<V: 'static> Default for BooleanStorage<V> {
fn default() -> Self {
Self {
t: Default::default(),
f: Default::default(),
}
}
}
impl<V> Storage<bool, V> for BooleanStorage<V> {
#[inline]
fn insert(&mut self, key: bool, value: V) -> Option<V> {
match key {
true => mem::replace(&mut self.t, Some(value)),
false => mem::replace(&mut self.f, Some(value)),
}
}
#[inline]
fn get(&self, key: bool) -> Option<&V> {
match key {
true => self.t.as_ref(),
false => self.f.as_ref(),
}
}
#[inline]
fn get_mut(&mut self, key: bool) -> Option<&mut V> {
match key {
true => self.t.as_mut(),
false => self.f.as_mut(),
}
}
#[inline]
fn remove(&mut self, key: bool) -> Option<V> {
match key {
true => mem::replace(&mut self.t, None),
false => mem::replace(&mut self.f, None),
}
}
#[inline]
fn clear(&mut self) {
self.t = None;
self.f = None;
}
#[inline]
fn iter<'a, F>(&'a self, mut f: F)
where
F: FnMut((bool, &'a V)),
{
if let Some(v) = self.t.as_ref() {
f((true, v));
}
if let Some(v) = self.f.as_ref() {
f((false, v));
}
}
#[inline]
fn iter_mut<'a, F>(&'a mut self, mut f: F)
where
F: FnMut((bool, &'a mut V)),
{
if let Some(v) = self.t.as_mut() {
f((true, v));
}
if let Some(v) = self.f.as_mut() {
f((false, v));
}
}
}