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

Loading content...