[][src]Trait lll_rs::vector::Dot

pub trait Dot<T> {
    fn dot(&self, other: &Self) -> T;
}

The Dot trait allows the computation of dot products with values in T

Required methods

fn dot(&self, other: &Self) -> T

Loading content...

Implementors

impl Dot<f64> for VectorF[src]

impl Dot<Integer> for BigVector[src]

impl Dot<Rational> for RationalVector[src]

Loading content...