[][src]Trait heaparray::SliceArray

pub trait SliceArray<E> {
    fn as_slice(&self) -> &[E];
}

Array that returns a slice into its contents

Required methods

fn as_slice(&self) -> &[E]

Returns a reference to a slice into the elements of this array.

Loading content...

Implementors

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

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

Loading content...