PermProduct

Trait PermProduct 

Source
pub trait PermProduct<Rhs> {
    type Output;

    // Required method
    fn perm_product(&self, other: &Rhs) -> Self::Output;
}
Expand description

The permutation composition operator.

Required Associated Types§

Required Methods§

Source

fn perm_product(&self, other: &Rhs) -> Self::Output

Implementors§

Source§

impl PermProduct<Perm<Dynamic>> for PermD

Source§

impl<const SIZE: usize> PermProduct<Perm<Dynamic>> for PermS<SIZE>

Source§

impl<const SIZE: usize> PermProduct<Perm<Static<SIZE>>> for PermD

Source§

impl<const SIZE: usize> PermProduct<Perm<Static<SIZE>>> for PermS<SIZE>

Source§

type Output = Perm<Static<SIZE>>