pub trait PermProduct<Rhs> {
type Output;
// Required method
fn perm_product(&self, other: &Rhs) -> Self::Output;
}Expand description
The permutation composition operator.
pub trait PermProduct<Rhs> {
type Output;
// Required method
fn perm_product(&self, other: &Rhs) -> Self::Output;
}The permutation composition operator.