pub trait WithoutLapackData<F: Float> where
    Self: Data
{ type D: Data<Elem = F>; fn without_lapack<I>(x: ArrayBase<Self, I>) -> ArrayBase<Self::D, I>
    where
        I: Dimension
, { ... } }

Required Associated Types

Provided Methods

Add trait bound Lapack and Scalar to NdArray’s floating point

This is safe, because only implemented for D == Self

Implementations on Foreign Types

Implementors