Trait basic_dsp_vector::FromVector [] [src]

pub trait FromVector<T> where T: RealNumber {
    type Output;
    fn get(self) -> (Self::Output, usize);
    fn to_slice(&self) -> &[T];
}

Retrieves the underlying storage from a vector.

Associated Types

Type of the underlying storage of a vector.

Required Methods

Gets the underlying storage and the number of elements which contain valid.

Gets the underlying slice of a vector.

Implementors