[][src]Trait higher_order_point::ops::Dot

pub trait Dot<Rhs = Self> {
    type Output;
    fn dot(self, other: Rhs) -> Self::Output;
}

Dot operator.

Associated Types

type Output

The output type.

Loading content...

Required methods

fn dot(self, other: Rhs) -> Self::Output

Returns the dot product.

Loading content...

Implementors

impl Dot<Point<()>> for Point[src]

type Output = f64

impl<T: 'static + Copy> Dot<Point<Arg<T>>> for PointFunc<T>[src]

type Output = Func<T, f64>

Loading content...