orx_iterable/obj_safe/sources/
once.rs

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
use crate::{
    obj_safe::{CollectionMutObj, CollectionObj, IterableObj},
    sources::{Once, OnceCol},
};
use std::boxed::Box;

impl<T> IterableObj for Once<T>
where
    T: Clone,
{
    type Item = T;

    fn boxed_iter(&self) -> Box<dyn Iterator<Item = Self::Item> + '_> {
        Box::new(core::iter::once(self.value.clone()))
    }
}

impl<T> IterableObj for core::iter::Once<T>
where
    T: Clone,
{
    type Item = T;

    fn boxed_iter(&self) -> Box<dyn Iterator<Item = Self::Item> + '_> {
        Box::new(self.clone())
    }
}

// col

impl<'a, T> IterableObj for &'a OnceCol<T> {
    type Item = &'a T;

    fn boxed_iter(&self) -> Box<dyn Iterator<Item = Self::Item> + '_> {
        Box::new(core::iter::once(&self.value))
    }
}

impl<T> CollectionObj for OnceCol<T> {
    type Item = T;

    fn boxed_iter(&self) -> Box<dyn Iterator<Item = &Self::Item> + '_> {
        Box::new(core::iter::once(&self.value))
    }
}

impl<T> CollectionMutObj for OnceCol<T> {
    fn boxed_iter_mut(&mut self) -> Box<dyn Iterator<Item = &mut Self::Item> + '_> {
        Box::new(core::iter::once(&mut self.value))
    }
}