pub struct Perm<I>where
I: Index,{ /* private fields */ }
Expand description
Permutation matrix.
Implementations§
Source§impl<I> Perm<I>where
I: Index,
impl<I> Perm<I>where
I: Index,
Sourcepub fn new_checked(forward: Box<[I]>, inverse: Box<[I]>) -> Perm<I>
pub fn new_checked(forward: Box<[I]>, inverse: Box<[I]>) -> Perm<I>
Creates a new permutation, by checking the validity of the inputs.
§Panics
The function panics if any of the following conditions are violated:
forward
and inverse
must have the same length which must be less than or equal to
I::Signed::MAX
, be valid permutations, and be inverse permutations of each other.
Sourcepub unsafe fn new_unchecked(forward: Box<[I]>, inverse: Box<[I]>) -> Perm<I>
pub unsafe fn new_unchecked(forward: Box<[I]>, inverse: Box<[I]>) -> Perm<I>
Creates a new permutation reference, without checking the validity of the inputs.
§Safety
forward
and inverse
must have the same length which must be less than or equal to
I::Signed::MAX
, be valid permutations, and be inverse permutations of each other.
Sourcepub fn into_inverse(self) -> Perm<I>
pub fn into_inverse(self) -> Perm<I>
Returns the inverse permutation.
Trait Implementations§
Auto Trait Implementations§
impl<I> Freeze for Perm<I>
impl<I> RefUnwindSafe for Perm<I>where
I: RefUnwindSafe,
impl<I> Send for Perm<I>
impl<I> Sync for Perm<I>
impl<I> Unpin for Perm<I>
impl<I> UnwindSafe for Perm<I>where
I: 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