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
use crate::imp::intf::{CItemPtr, CListPtr};
use std::marker::PhantomData;
use crate::imp::intf::clist_iter_const::CListIterConst;
use std::ops::Deref;
unsafe impl<'a, V:From<CItemPtr>> Send for CListConst<'a, V>{}
unsafe impl<'a, V:From<CItemPtr>> Sync for CListConst<'a, V>{}
#[derive(Debug)]
pub struct CListConst<'a, V : From<CItemPtr>>{
    ptr : CListPtr<V>,
    phantom : PhantomData<&'a i32>,
}

impl<'a, V : From<CItemPtr>> CListConst<'a, V>{
    pub fn new<T>(ptr : CListPtr<V>, _src : &'a T) -> CListConst<'a, V>{
        CListConst{ ptr, phantom : PhantomData }
    }

    pub fn len(&self) -> usize{
        self.ptr.len()
    }
    pub fn value(&self, idx : usize) -> CItemConst<'a, V>{
        CItemConst::from_phantom(self.ptr.value(idx), self.phantom)
    }

    pub fn iter(&self) -> CListIterConst<V>{
        CListIterConst::new(self.ptr.iter(), self)
    }
}

unsafe impl<'a, V> Send for CItemConst<'a, V>{}
unsafe impl<'a, V> Sync for CItemConst<'a, V>{}
pub struct CItemConst<'a, V>{
    item : V,
    phantom : PhantomData<&'a i32>,
}

impl<'a, V> CItemConst<'a, V>{
    pub fn new<T>(item : V, _src : &'a T) -> CItemConst<'a, V>{
        CItemConst{ item, phantom : PhantomData }
    }
    pub fn from_phantom<T>(
        item : V,
        _src : PhantomData<&'a T>) -> CItemConst<'a, V>{
        CItemConst{ item, phantom : PhantomData }
    }
}

impl<'a, T> Deref for CItemConst<'a, T>{
    type Target = T;

    fn deref(&self) -> &Self::Target {
        &self.item
    }
}