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
use core::fmt;
use core::iter::FusedIterator;
use crate::iter::ValueIterMut;
use crate::Reflect;
pub trait Array: Reflect {
fn get(&self, index: usize) -> Option<&dyn Reflect>;
fn get_mut(&mut self, index: usize) -> Option<&mut dyn Reflect>;
fn len(&self) -> usize;
fn is_empty(&self) -> bool;
fn iter(&self) -> Iter<'_>;
fn iter_mut(&mut self) -> ValueIterMut<'_>;
}
impl fmt::Debug for dyn Array {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.as_reflect().debug(f)
}
}
#[derive(Debug)]
pub struct Iter<'a> {
index: usize,
array: &'a dyn Array,
}
impl<'a> Iter<'a> {
pub fn new(array: &'a dyn Array) -> Self {
Self { index: 0, array }
}
}
impl<'a> Iterator for Iter<'a> {
type Item = &'a dyn Reflect;
fn next(&mut self) -> Option<Self::Item> {
let value = self.array.get(self.index)?;
self.index += 1;
Some(value)
}
}
impl<'a> ExactSizeIterator for Iter<'a> {
fn len(&self) -> usize {
self.array.len()
}
}
impl<'a> FusedIterator for Iter<'a> {}