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
use core::borrow::Borrow;
use alloc::collections::BTreeSet;
use core::hash::Hash;
use crate::At;


#[cfg(feature="hashbrown")]
impl<T> At<(T,)> for hashbrown::HashSet<T> where
    T: Eq + Hash,
{
    type View = Self;

    fn access_at<R,F>(&mut self, item: (T,), f: F) -> Option<R> where
        F: FnOnce(&mut Self) -> R
    {
        self.insert(item.0);

        Some(f(self))
    }
}


#[cfg(feature="hashbrown")]
impl<T> At<(T,())> for hashbrown::HashSet<T> where
    T: Eq + Hash,
{
    type View = T;

    fn access_at<R,F>(&mut self, mut item: (T,()), f: F) -> Option<R> where
        F: FnOnce(&mut T) -> R
    {
        if let Some(v) = self.take(&item.0) {
            item.0 = v;
        }

        let result = f(&mut item.0);
        
        self.insert(item.0);

        Some(result)
    }
}


#[cfg(feature="hashbrown")]
impl<Q,T> At<&Q> for hashbrown::HashSet<T> where
    T: Borrow<Q> + Eq + Hash,
    Q: ?Sized + Eq + Hash
{
    type View = T;

    fn access_at<R,F>(&mut self, i: &Q, f: F) -> Option<R> where
        F: FnOnce(&mut T) -> R
    {
        self.take(i).map(|mut v| {
            let result = f(&mut v);

            self.insert(v);

            result
        })
    }
}


#[cfg(feature="std_hashmap")]
extern crate std;


#[cfg(feature="std_hashmap")]
impl<T> At<(T,)> for std::collections::HashSet<T> where
    T: Eq + Hash,
{
    type View = Self;

    fn access_at<R,F>(&mut self, item: (T,), f: F) -> Option<R> where
        F: FnOnce(&mut Self) -> R
    {
        self.insert(item.0);

        Some(f(self))
    }
}


#[cfg(feature="std_hashmap")]
impl<T> At<(T,())> for std::collections::HashSet<T> where
    T: Eq + Hash,
{
    type View = T;

    fn access_at<R,F>(&mut self, mut item: (T,()), f: F) -> Option<R> where
        F: FnOnce(&mut T) -> R
    {
        if let Some(v) = self.take(&item.0) {
            item.0 = v;
        }

        let result = f(&mut item.0);
        
        self.insert(item.0);

        Some(result)
    }
}


#[cfg(feature="std_hashmap")]
impl<Q,T> At<&Q> for std::collections::HashSet<T> where
    T: Borrow<Q> + Eq + Hash,
    Q: ?Sized + Eq + Hash
{
    type View = T;

    fn access_at<R,F>(&mut self, i: &Q, f: F) -> Option<R> where
        F: FnOnce(&mut T) -> R
    {
        self.take(i).map(|mut v| {
            let result = f(&mut v);

            self.insert(v);

            result
        })
    }
}






impl<T> At<(T,)> for BTreeSet<T> where
    T: Ord,
{
    type View = Self;

    fn access_at<R,F>(&mut self, item: (T,), f: F) -> Option<R> where
        F: FnOnce(&mut Self) -> R
    {
        self.insert(item.0);

        Some(f(self))
    }
}

impl<T> At<(T,())> for BTreeSet<T> where
    T: Ord,
{
    type View = T;

    fn access_at<R,F>(&mut self, mut item: (T,()), f: F) -> Option<R> where
        F: FnOnce(&mut T) -> R
    {
        if let Some(v) = self.take(&item.0) {
            item.0 = v;
        }

        let result = f(&mut item.0);
        
        self.insert(item.0);

        Some(result)
    }
}

impl<Q,T> At<&Q> for BTreeSet<T> where
    T: Borrow<Q> + Ord,
    Q: ?Sized + Ord
{
    type View = T;

    fn access_at<R,F>(&mut self, i: &Q, f: F) -> Option<R> where
        F: FnOnce(&mut T) -> R
    {
        self.take(i).map(|mut v| {
            let result = f(&mut v);

            self.insert(v);

            result
        })
    }
}


/* EDIT-ACCESSOR: WIP
impl<Q,T> At<Option<&Q>> for BTreeSet<T> where
    T: Borrow<Q> + Ord,
    Q: ?Sized + Ord
{
    type View = Option<T>;

    fn access_at<R,F>(&mut self, maybe_i: Option<&Q>, f: F) -> Option<R> where
        F: FnOnce(&mut Option<T>) -> R
    {
        maybe_i.map(|i| {
            self.take(i).map(|v| {
                let mut cell = Some(v);

                let result = f(&mut cell);

                if let Some(new_v) = cell {
                    self.insert(new_v);
                }

                result
            })
        }).flatten()
    }
}*/