Trait beagle::scalar_array::HasConcreteScalarArray [] [src]

pub trait HasConcreteScalarArray<S, R = Self::Row, D = Self::Dim>: ScalarArray where
    R: Dim<S>,
    D: TwoDim<S, R>,
    <Self::Row as HasSmaller>::Smaller: Array<Self::Scalar>,
    <Self::Dim as HasSmaller>::Smaller: Array<<Self::Row as Array<Self::Scalar>>::Type>,
    <R as HasSmaller>::Smaller: Array<S>,
    <D as HasSmaller>::Smaller: Array<<R as Array<S>>::Type>, 
{ type Concrete: ConcreteScalarArray<Scalar = S, Row = R, Dim = D>; }

Matrix/Vector types that have an associated constructable type

Associated Types

The type of a concrete ScalarArray of the specified type

Implementors