Skip to main content

Dot

Trait Dot 

Source
pub trait Dot<T> {
    type Output;

    // Required method
    fn dot(self, other: T) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<S: Field, const N: usize> Dot<Nrml<N, S>> for Nrml<N, S>

Source§

impl<S: Field, const N: usize> Dot<Nrml<N, S>> for Vect<N, S>

Source§

impl<S: Field, const N: usize> Dot<Vect<N, S>> for Nrml<N, S>

Source§

impl<S: Ring, const N: usize> Dot<Vect<N, S>> for Vect<N, S>