pub trait GroupAction {
type Domain;
// Required method
fn act_on(&self, element: &Self::Domain) -> Self::Domain;
}
Expand description
A group can act on a set. (See Group Action).
pub trait GroupAction {
type Domain;
// Required method
fn act_on(&self, element: &Self::Domain) -> Self::Domain;
}
A group can act on a set. (See Group Action).