[][src]Trait hcomplex::prelude::Dot

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

Dot product.

Associated Types

type Output[src]

Dot product output type.

Loading content...

Required methods

pub fn dot(self, other: Self) -> Self::Output[src]

Perform dot product.

Loading content...

Implementations on Foreign Types

impl Dot for i8[src]

type Output = Self

impl Dot for i16[src]

type Output = Self

impl Dot for i32[src]

type Output = Self

impl Dot for i64[src]

type Output = Self

impl Dot for f32[src]

type Output = Self

impl Dot for f64[src]

type Output = Self

Loading content...

Implementors

impl<T, U> Dot for Construct<T, U> where
    T: Add<Output = T>,
    U: Dot<Output = T>, 
[src]

type Output = T

Loading content...