pub trait Orbit<G, I>where
G: GroupProperties,{
type OrbitIter: Iterator<Item = Result<I, Error>>;
// Required methods
fn group(&self) -> &G;
fn origin(&self) -> &I;
fn iter(&self) -> Self::OrbitIter;
}
Expand description
Trait for orbits arising from group actions.