pub struct FreeGroup<S: UnderlyingSet> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<S: UnderlyingSet> Group for FreeGroup<S>
impl<S: UnderlyingSet> Group for FreeGroup<S>
fn identity() -> Self
fn inverse(self) -> Self
fn compose_mut(&mut self, other: &Self)
fn inverse_ref(&self) -> Self
fn compose(a: Self, b: Self) -> Self
fn compose_lref(a: &Self, b: Self) -> Self
fn compose_rref(a: Self, b: &Self) -> Self
fn compose_refs(a: &Self, b: &Self) -> Self
fn compose_list(elems: Vec<impl Borrow<Self>>) -> Self
fn nat_pow(&self, n: &Natural) -> Self
fn int_pow(&self, n: &Integer) -> Self
impl<S: Eq + UnderlyingSet> Eq for FreeGroup<S>
impl<S: UnderlyingSet> StructuralPartialEq for FreeGroup<S>
Auto Trait Implementations§
impl<S> Freeze for FreeGroup<S>
impl<S> RefUnwindSafe for FreeGroup<S>where
S: RefUnwindSafe,
impl<S> Send for FreeGroup<S>where
S: Send,
impl<S> Sync for FreeGroup<S>where
S: Sync,
impl<S> Unpin for FreeGroup<S>where
S: Unpin,
impl<S> UnwindSafe for FreeGroup<S>where
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more