Dotc

Trait Dotc 

Source
pub trait Dotc: Sized + Dot {
    // Provided method
    fn dotc<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        x: &V,
        y: &W,
    ) -> Self { ... }
}
Expand description

Computes x^H * y.

Provided Methods§

Source

fn dotc<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( x: &V, y: &W, ) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Dotc for f32

Source§

impl Dotc for f64

Source§

impl Dotc for Complex32

Source§

fn dotc<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( x: &V, y: &W, ) -> Complex32

Source§

impl Dotc for Complex64

Source§

fn dotc<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( x: &V, y: &W, ) -> Complex64

Implementors§