Trait InnerProductSpace

Source
pub trait InnerProductSpace<S: Field>: VectorSpace<S> + Dot<S> {
    // Provided method
    fn inner_product(self, other: Self) -> S { ... }
}
Expand description

Bilinear form on a VectorSpace

Provided Methods§

Source

fn inner_product(self, other: Self) -> S

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.

Implementors§