pub struct Permutation { /* private fields */ }
Expand description
A permutation of the set 0..n for a suitable choice of n.
Implementations§
Source§impl Permutation
impl Permutation
Trait Implementations§
Source§impl Clone for Permutation
impl Clone for Permutation
Source§fn clone(&self) -> Permutation
fn clone(&self) -> Permutation
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Permutation
impl Debug for Permutation
Source§impl Display for Permutation
impl Display for Permutation
Source§impl GroupAction for Permutation
impl GroupAction for Permutation
Source§impl GroupElement for Permutation
impl GroupElement for Permutation
Source§fn is_identity(&self) -> bool
fn is_identity(&self) -> bool
Determine if the group element is the identity.
Source§fn times(&self, multiplicant: &Permutation) -> Permutation
fn times(&self, multiplicant: &Permutation) -> Permutation
The associated operation of the Group.
Source§fn inverse(&self) -> Permutation
fn inverse(&self) -> Permutation
Returns the inverse of the group element.
Source§impl PartialEq for Permutation
impl PartialEq for Permutation
impl StructuralPartialEq for Permutation
Auto Trait Implementations§
impl Freeze for Permutation
impl RefUnwindSafe for Permutation
impl Send for Permutation
impl Sync for Permutation
impl Unpin for Permutation
impl UnwindSafe for Permutation
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