Trait ToNative

Source
pub trait ToNative {
    // Required methods
    fn to_native(&self) -> Array2<Complex32>;
    fn par_to_native(&self) -> Array2<Complex32>;
}

Required Methods§

Source

fn to_native(&self) -> Array2<Complex32>

Performs allocation of a native-aligned Complex32 array

Source

fn par_to_native(&self) -> Array2<Complex32>

Performs allocation of a native-aligned Complex32 array using rayon

Implementations on Foreign Types§

Source§

impl<'a> ToNative for ArrayView2<'a, Complex<F32<BE>>>

Implementors§