[][src]Trait heaparray::impls::DefaultLabelledArray

pub trait DefaultLabelledArray<E, L>: LabelledArray<E, L> where
    E: Default
{ fn with_len(label: L, len: usize) -> Self; }

Trait for a labelled array with a default value.

Required methods

fn with_len(label: L, len: usize) -> Self

Create a new array, initialized to default values.

Loading content...

Implementors

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

impl<E, L, P> DefaultLabelledArray<E, L> for SafeArray<E, L, P> where
    P: SafeArrayPtr<E, L>,
    E: Default
[src]

Loading content...