Skip to main content

Meet

Trait Meet 

Source
pub trait Meet<Rhs> {
    type Output;

    // Required method
    fn meet(self, rhs: Rhs) -> Self::Output;
}
Expand description

The outer product, also known as the wedge product.

Required Associated Types§

Required Methods§

Source

fn meet(self, rhs: Rhs) -> Self::Output

Implementors§