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
#![no_std]
#![forbid(unsafe_code)]
use core::cell::Cell as StdCell;
use core::cmp::Ordering;
use core::fmt;
use core::ops::{Deref, DerefMut};
#[cfg(test)]
mod tests;
#[derive(Default)]
pub struct Cell<T>(StdCell<T>);
impl<T> Cell<T> {
pub fn new(value: T) -> Self {
Self(StdCell::new(value))
}
}
impl<T> Deref for Cell<T> {
type Target = StdCell<T>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl<T> DerefMut for Cell<T> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl<T> From<T> for Cell<T> {
fn from(value: T) -> Self {
Self::new(value)
}
}
impl<T> From<StdCell<T>> for Cell<T> {
fn from(cell: StdCell<T>) -> Self {
Self(cell)
}
}
impl<T> From<Cell<T>> for StdCell<T> {
fn from(cell: Cell<T>) -> Self {
cell.0
}
}
impl<T: Copy> Cell<T> {
pub fn get(&self) -> T {
self.0.get()
}
pub fn with<F, R>(&self, f: F) -> R
where
F: FnOnce(&T) -> R,
{
f(&self.get())
}
pub fn with_mut<F, R>(&self, f: F) -> R
where
F: FnOnce(&mut T) -> R,
{
let mut value = self.get();
let result = f(&mut value);
self.set(value);
result
}
}
mod sealed {
pub trait Sealed {}
}
pub trait CellExt<T>: sealed::Sealed {
fn get(&self) -> T
where
T: Clone + Default;
fn with<F, R>(&self, f: F) -> R
where
T: Default,
F: FnOnce(&T) -> R;
fn with_mut<F, R>(&self, f: F) -> R
where
T: Default,
F: FnOnce(&mut T) -> R;
}
impl<T> sealed::Sealed for Cell<T> {}
impl<T> CellExt<T> for Cell<T> {
fn get(&self) -> T
where
T: Clone + Default,
{
let value = self.take();
let clone = value.clone();
self.set(value);
clone
}
fn with<F, R>(&self, f: F) -> R
where
T: Default,
F: FnOnce(&T) -> R,
{
let value = self.take();
let result = f(&value);
self.set(value);
result
}
fn with_mut<F, R>(&self, f: F) -> R
where
T: Default,
F: FnOnce(&mut T) -> R,
{
let mut value = self.take();
let result = f(&mut value);
self.set(value);
result
}
}
impl<T: Copy> Clone for Cell<T> {
fn clone(&self) -> Self {
Self(self.0.clone())
}
}
impl<T: fmt::Debug + Copy> fmt::Debug for Cell<T> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
self.0.fmt(fmt)
}
}
impl<T: Ord + Copy> Ord for Cell<T> {
fn cmp(&self, other: &Self) -> Ordering {
self.0.cmp(other)
}
}
impl<T: PartialOrd + Copy> PartialOrd for Cell<T> {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.0.partial_cmp(other)
}
}
impl<T: PartialEq + Copy> PartialEq for Cell<T> {
fn eq(&self, other: &Self) -> bool {
self.0.eq(other)
}
}
impl<T: Eq + Copy> Eq for Cell<T> {}