[][src]Trait heaparray::Container

pub trait Container {
    fn len(&self) -> usize;
}

Trait for a simple container.

Required methods

fn len(&self) -> usize

Get the size of the container.

Loading content...

Implementors

impl<A, R, E, L> Container for RcArray<A, R, E, L> where
    A: LabelledArray<E, R> + BaseArrayRef,
    R: RefCounter<L>, 
[src]

impl<E, L> Container for AtomicPtrArray<E, L>[src]

impl<E, L> Container for ThinPtrArray<E, L>[src]

impl<E, L> Container for FatPtrArray<E, L>[src]

Loading content...