intrex 0.1.1

Intrusive doubly-linked lists with items addressed by indices
Documentation
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
//! Iterators for [`ListAccessor`]
use super::*;

/// Iteration
impl<'head, 'pool, Index, Pool, MapLink, Element> ListAccessor<'head, 'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
    /// Iterate over `(Index, &Element)`.
    #[inline]
    pub fn iter(&self) -> Iter<'pool, Index, Pool, &MapLink> {
        Iter {
            indices: self.indices(),
        }
    }

    /// Iterate over `(Index, &Element)` in a given range.
    #[inline]
    pub fn iter_range(
        &self,
        range: impl ops::RangeBounds<Option<Index>>,
    ) -> Iter<'pool, Index, Pool, &MapLink> {
        Iter {
            indices: self.indices_range(range),
        }
    }

    /// Iterate over `(Index, &Element)` in a given range, consuming `self`.
    #[inline]
    pub fn into_iter_range(
        self,
        range: impl ops::RangeBounds<Option<Index>>,
    ) -> Iter<'pool, Index, Pool, MapLink> {
        Iter {
            indices: self.into_indices_range(range),
        }
    }

    /// Iterate over `Index`.
    #[inline]
    pub fn indices(&self) -> Indices<'pool, Index, Pool, &MapLink> {
        Indices {
            pool: self.pool,
            map_link: &self.map_link,
            range: self.head.first.clone().map(|x| [x.clone(), x]),
        }
    }

    /// Iterate over `Index`, consuming `self`.
    #[inline]
    pub fn into_indices(self) -> Indices<'pool, Index, Pool, MapLink> {
        Indices {
            pool: self.pool,
            map_link: self.map_link,
            range: self.head.first.clone().map(|x| [x.clone(), x]),
        }
    }

    /// Iterate over `Index` in a given range.
    #[inline]
    pub fn indices_range(
        &self,
        range: impl ops::RangeBounds<Option<Index>>,
    ) -> Indices<'pool, Index, Pool, &MapLink> {
        let (range, _) = resolve_range(range, |i| link!(self, i).clone(), self.head.first.clone());
        Indices {
            pool: self.pool,
            range: range.map(|[start, end]| [start, link!(self, end).next.clone()]),
            map_link: &self.map_link,
        }
    }

    /// Iterate over `Index` in a given range, consuming `self`.
    #[inline]
    pub fn into_indices_range(
        self,
        range: impl ops::RangeBounds<Option<Index>>,
    ) -> Indices<'pool, Index, Pool, MapLink> {
        let (range, _) = resolve_range(range, |i| link!(self, i).clone(), self.head.first.clone());
        Indices {
            pool: self.pool,
            range: range.map(|[start, end]| [start, link!(self, end).next.clone()]),
            map_link: self.map_link,
        }
    }

    /// Iterate over `&Element`.
    #[inline]
    pub fn values(&self) -> Values<'pool, Index, Pool, &MapLink> {
        Values {
            indices: self.indices(),
        }
    }

    /// Iterate over `&Element`, consuming `self`.
    #[inline]
    pub fn into_values(self) -> Values<'pool, Index, Pool, MapLink> {
        Values {
            indices: self.into_indices(),
        }
    }

    /// Iterate over `&Element` in a given range.
    #[inline]
    pub fn values_range(
        &self,
        range: impl ops::RangeBounds<Option<Index>>,
    ) -> Values<'pool, Index, Pool, &MapLink> {
        Values {
            indices: self.indices_range(range),
        }
    }

    /// Iterate over `&Element` in a given range, consuming `self`.
    #[inline]
    pub fn into_values_range(
        self,
        range: impl ops::RangeBounds<Option<Index>>,
    ) -> Values<'pool, Index, Pool, MapLink> {
        Values {
            indices: self.into_indices_range(range),
        }
    }
}

impl<'head, 'pool, Index, Pool, MapLink, Element> IntoIterator
    for ListAccessor<'head, 'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
    type Item = (Index, &'pool Element);
    type IntoIter = Iter<'pool, Index, Pool, MapLink>;

    #[inline]
    fn into_iter(self) -> Self::IntoIter {
        Iter {
            indices: self.into_indices(),
        }
    }
}

impl<'a, 'head, 'pool, Index, Pool, MapLink, Element> IntoIterator
    for &'a ListAccessor<'head, 'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
    type Item = (Index, &'pool Element);
    type IntoIter = Iter<'pool, Index, Pool, &'a MapLink>;

    #[inline]
    fn into_iter(self) -> Self::IntoIter {
        self.iter()
    }
}

/// An iterator over the indices and elements of [`ListAccessor`].
#[derive(Debug)]
pub struct Iter<'pool, Index, Pool: ?Sized, MapLink> {
    indices: Indices<'pool, Index, Pool, MapLink>,
}

impl<'pool, Index, Pool, MapLink> Clone for Iter<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized,
    MapLink: Clone,
    Index: Clone,
{
    #[inline]
    fn clone(&self) -> Self {
        Self {
            indices: self.indices.clone(),
        }
    }
}

impl<'pool, Index, Pool, MapLink> Default for Iter<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized,
    &'pool Pool: Default,
    MapLink: Default,
{
    #[inline]
    fn default() -> Self {
        Self {
            indices: <_>::default(),
        }
    }
}

impl<'pool, Index, Pool, MapLink, Element> Iterator for Iter<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
    type Item = (Index, &'pool Element);

    #[inline]
    fn next(&mut self) -> Option<Self::Item> {
        self.indices
            .next()
            .map(|i| (i.clone(), self.indices.pool.index(i)))
    }
}

impl<'pool, Index, Pool, MapLink, Element> DoubleEndedIterator for Iter<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
    #[inline]
    fn next_back(&mut self) -> Option<Self::Item> {
        self.indices
            .next_back()
            .map(|i| (i.clone(), self.indices.pool.index(i)))
    }
}

impl<'pool, Index, Pool, MapLink, Element> core::iter::FusedIterator
    for Iter<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
}

/// An iterator over the elements of [`ListAccessor`].
#[derive(Debug)]
pub struct Values<'pool, Index, Pool: ?Sized, MapLink> {
    indices: Indices<'pool, Index, Pool, MapLink>,
}

impl<'pool, Index, Pool, MapLink> Clone for Values<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized,
    MapLink: Clone,
    Index: Clone,
{
    #[inline]
    fn clone(&self) -> Self {
        Self {
            indices: self.indices.clone(),
        }
    }
}

impl<'pool, Index, Pool, MapLink> Default for Values<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized,
    &'pool Pool: Default,
    MapLink: Default,
{
    #[inline]
    fn default() -> Self {
        Self {
            indices: <_>::default(),
        }
    }
}

impl<'pool, Index, Pool, MapLink, Element> Iterator for Values<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
    type Item = &'pool Element;

    #[inline]
    fn next(&mut self) -> Option<Self::Item> {
        self.indices.next().map(|i| self.indices.pool.index(i))
    }
}

impl<'pool, Index, Pool, MapLink, Element> DoubleEndedIterator
    for Values<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
    #[inline]
    fn next_back(&mut self) -> Option<Self::Item> {
        self.indices.next_back().map(|i| self.indices.pool.index(i))
    }
}

impl<'pool, Index, Pool, MapLink, Element> core::iter::FusedIterator
    for Values<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
}

/// An iterator over the element indices of [`ListAccessor`].
#[derive(Debug)]
pub struct Indices<'pool, Index, Pool: ?Sized, MapLink> {
    pool: &'pool Pool,
    map_link: MapLink,
    range: Option<[Index; 2]>,
}

impl<'pool, Index, Pool, MapLink> Clone for Indices<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized,
    MapLink: Clone,
    Index: Clone,
{
    #[inline]
    fn clone(&self) -> Self {
        Self {
            pool: self.pool,
            map_link: self.map_link.clone(),
            range: self.range.clone(),
        }
    }
}

impl<'pool, Index, Pool, MapLink> Default for Indices<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized,
    &'pool Pool: Default,
    MapLink: Default,
{
    #[inline]
    fn default() -> Self {
        Self {
            pool: <_>::default(),
            map_link: <_>::default(),
            range: None,
        }
    }
}

impl<'pool, Index, Pool, MapLink, Element> Iterator for Indices<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
    type Item = Index;

    #[inline]
    fn next(&mut self) -> Option<Self::Item> {
        if let Some([start, end]) = self.range.take() {
            let new_start = link!(self, start.clone()).next.clone();
            if new_start != end {
                self.range = Some([new_start, end]);
            }
            Some(start)
        } else {
            None
        }
    }
}

impl<'pool, Index, Pool, MapLink, Element> DoubleEndedIterator
    for Indices<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
    #[inline]
    fn next_back(&mut self) -> Option<Self::Item> {
        if let Some([start, end]) = self.range.take() {
            let new_end = link!(self, end.clone()).prev.clone();
            if new_end != start {
                self.range = Some([start, new_end.clone()]);
            }
            Some(new_end)
        } else {
            None
        }
    }
}

impl<'pool, Index, Pool, MapLink, Element> core::iter::FusedIterator
    for Indices<'pool, Index, Pool, MapLink>
where
    Pool: ?Sized + self::Pool<Index, Element = Element>,
    MapLink: Fn(&'pool Element) -> &'pool Option<Link<Index>>,
    Element: 'pool,
    Index: PartialEq + Clone + 'pool,
{
}

#[cfg(test)]
mod tests {
    use proptest::prelude::*;
    use std::{borrow::ToOwned, vec::Vec};

    use super::*;
    use crate::list::tests::push;

    #[test]
    fn iter() {
        for len in 0..4 {
            let pool: Vec<_> = (0..len)
                .map(|i| {
                    Some(Link {
                        prev: (i + len - 1) % len,
                        next: (i + 1) % len,
                    })
                })
                .collect();
            let head = Head {
                first: (len != 0).then_some(0),
            };
            let accessor = head.accessor(&pool, |x| x);

            assert_eq!(
                accessor.iter().map(|x| x.0).collect::<Vec<_>>(),
                (0..len).collect::<Vec<_>>()
            );

            assert_eq!(
                accessor.indices().collect::<Vec<_>>(),
                (0..len).collect::<Vec<_>>()
            );

            assert_eq!(
                accessor.iter().rev().map(|x| x.0).collect::<Vec<_>>(),
                (0..len).rev().collect::<Vec<_>>()
            );
        }
    }

    #[proptest::property_test]
    fn pt_iter_range(elems: Vec<u8>, [start, end]: [prop::sample::Index; 2]) {
        let mut pool: Vec<(u8, Option<Link>)> = Vec::new();
        let mut head = Head::new();

        for &value in &elems {
            let ptr = push(&mut pool, (value, None));
            head.accessor_mut(&mut pool, |&mut (_, ref mut link)| link)
                .push_back(ptr);
        }

        let start = start.index(elems.len() + 1);
        let end = end.index(elems.len() + 1 - start) + start;

        let [start_ind, end_ind] = [start, end].map(|i| (i < elems.len()).then_some(i));

        let expected = elems[start..end].to_owned();

        let got: Vec<u8> = head
            .accessor(&pool, |(_, link)| link)
            .values_range(start_ind..end_ind)
            .map(|&(value, _)| value)
            .collect();

        assert_eq!(got, expected);
    }
}