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§
Object Safety§
This trait is not object safe.