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
|
use crate::*;
pub struct EntityIterator<'tok, 'brand, 'arena, T>(Option<(lens_t!(T), lens_t!(T))>);
impl<'tok, 'brand, 'arena, T> Clone for EntityIterator<'tok, 'brand, 'arena, T> {
fn clone(&self) -> Self {
*self
}
}
impl<'tok, 'brand, 'arena, T> Copy for EntityIterator<'tok, 'brand, 'arena, T> {}
impl<'tok, 'brand, 'arena, T: Entity<'brand, 'arena>> EntityIterator<'tok, 'brand, 'arena, T> {
pub(crate) fn new(
start: Option<ptr_t!(T)>,
token: &'tok impl ReflAsRef<GhostToken<'brand>>,
) -> Self {
Self(start.map(|s| {
let l = Lens::new(s, token);
(l, l.prev())
}))
}
}
impl<'tok, 'brand, 'arena, T: Entity<'brand, 'arena>> Iterator
for EntityIterator<'tok, 'brand, 'arena, T>
{
type Item = lens_t!(T);
fn next(&mut self) -> Option<Self::Item> {
let range = self.0.as_mut()?;
let ret = range.0;
if range.0 == range.1 {
self.0 = None;
} else {
range.0 = range.0.next();
}
Some(ret)
}
}
impl<'tok, 'brand, 'arena, T: Entity<'brand, 'arena>> DoubleEndedIterator
for EntityIterator<'tok, 'brand, 'arena, T>
{
fn next_back(&mut self) -> Option<Self::Item> {
let range = self.0.as_mut()?;
let ret = range.1;
if range.0 == range.1 {
self.0 = None;
} else {
range.1 = range.1.prev();
}
Some(ret)
}
}
|