IntoNdarr

Trait IntoNdarr 

Source
pub trait IntoNdarr<T, R: Unsigned>
where T: Debug + Clone + Default,
{ // Required methods fn into_ndarr(&self, shape: &Dim<R>) -> Ndarr<T, R>; fn get_rank(&self) -> usize; }

Required Methods§

Source

fn into_ndarr(&self, shape: &Dim<R>) -> Ndarr<T, R>

Source

fn get_rank(&self) -> usize

Implementors§

Source§

impl<T, P, R: Unsigned> IntoNdarr<T, R> for P
where T: Debug + Copy + Clone + Default, P: Into<T> + Clone + Scalar,

Source§

impl<T, R: Unsigned> IntoNdarr<T, R> for Ndarr<T, R>
where T: Debug + Clone + Default,