Trait concision_core::prelude::Affine

source ·
pub trait Affine<X, Y = X> {
    type Output;

    // Required method
    fn affine(&self, mul: X, add: Y) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn affine(&self, mul: X, add: Y) -> Self::Output

Implementations on Foreign Types§

source§

impl<A, D> Affine<A> for Array<A, D>

§

type Output = ArrayBase<OwnedRepr<A>, D>

source§

fn affine(&self, mul: A, add: A) -> Self::Output

Implementors§