Trait ndarray::Initializer [] [src]

pub unsafe trait Initializer {
    type Elem;
    fn as_init_slice(&self) -> &[Self::Elem];

    fn is_fixed_size() -> bool { ... }
}

Slice or fixed-size array used for array initialization

Associated Types

type Elem

Required Methods

fn as_init_slice(&self) -> &[Self::Elem]

Provided Methods

Implementors