pub struct NormalSubgroup<'a> { /* private fields */ }Implementations§
Source§impl<'a> NormalSubgroup<'a>
impl<'a> NormalSubgroup<'a>
pub fn check_state(&self) -> Result<(), &'static str>
pub fn new_unchecked(subgroup: Subgroup<'a>) -> Self
pub fn size(&self) -> usize
pub fn subgroup(&self) -> &Subgroup<'a>
pub fn to_subgroup(self) -> Subgroup<'a>
pub fn cosets(&self) -> Congruence<'_>
pub fn quotient_group(&self) -> FiniteGroupMultiplicationTable
Auto Trait Implementations§
impl<'a> Freeze for NormalSubgroup<'a>
impl<'a> RefUnwindSafe for NormalSubgroup<'a>
impl<'a> Send for NormalSubgroup<'a>
impl<'a> Sync for NormalSubgroup<'a>
impl<'a> Unpin for NormalSubgroup<'a>
impl<'a> UnwindSafe for NormalSubgroup<'a>
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> 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