Trait permutation_rs::group::GroupAction [] [src]

pub trait GroupAction {
    type Domain;
    fn act_on(&self, element: &Self::Domain) -> Self::Domain;
}

A group can act on a set. (See Group Action).

Associated Types

The set the group acts on.

Required Methods

The action that the group has on the domain.

Implementors