pub trait Tensor<Rhs = Self> {
    type Output;
    fn tensor(self, rhs: Rhs) -> Self::Output;
}
Expand description

The tensor product operator ($\otimes$).

Associated Types

The resulting type after applying the tensor product.

Required methods

Performs the tensor product.

Example
// TODO

Implementations on Foreign Types

Implementors