[][src]Type Definition totsu::matgen::FP

type FP = f64;

Scalar floating point type

Trait Implementations

impl<V: MatView> Add<MatGen<V>> for FP[src]

type Output = MatGen<V::OwnColl>

The resulting type after applying the + operator.

impl<V: MatView, '_> Add<&'_ MatGen<V>> for FP[src]

type Output = MatGen<V::OwnColl>

The resulting type after applying the + operator.

impl<V: MatView> Sub<MatGen<V>> for FP[src]

type Output = MatGen<V::OwnColl>

The resulting type after applying the - operator.

impl<V: MatView, '_> Sub<&'_ MatGen<V>> for FP[src]

type Output = MatGen<V::OwnColl>

The resulting type after applying the - operator.

impl<V: MatView> Mul<MatGen<V>> for FP[src]

type Output = MatGen<V::OwnColl>

The resulting type after applying the * operator.

impl<V: MatView, '_> Mul<&'_ MatGen<V>> for FP[src]

type Output = MatGen<V::OwnColl>

The resulting type after applying the * operator.