pub trait Product<T, U> {
    fn mul(a: T, b: U) -> Self;
}
Expand description

Implemented by products.

Required methods

Creates a product out of two propositions.

Implementors