[][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<E, L, P> Container for SafeArray<E, L, P> where
    P: SafeArrayPtr<E, L>, 
[src]

Loading content...