pub struct MatrixMod2 { /* private fields */ }Expand description
$\mathbb{Z} / 2 \mathbb{Z}$上の行列
Implementations§
Source§impl MatrixMod2
impl MatrixMod2
Sourcepub fn from_vec_bitset(other: Vec<Bitset>) -> Self
pub fn from_vec_bitset(other: Vec<Bitset>) -> Self
BitsetのVecからMatrixMod2を生成する
Trait Implementations§
Source§impl Add for MatrixMod2
impl Add for MatrixMod2
Source§impl AddAssign for MatrixMod2
impl AddAssign for MatrixMod2
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl Clone for MatrixMod2
impl Clone for MatrixMod2
Source§fn clone(&self) -> MatrixMod2
fn clone(&self) -> MatrixMod2
Returns a duplicate 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 Index<usize> for MatrixMod2
impl Index<usize> for MatrixMod2
Source§impl Matrix for MatrixMod2
impl Matrix for MatrixMod2
Source§impl MatrixTranspose for MatrixMod2
impl MatrixTranspose for MatrixMod2
Source§impl Mul for MatrixMod2
impl Mul for MatrixMod2
Source§impl MulAssign for MatrixMod2
impl MulAssign for MatrixMod2
Source§fn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
Performs the
*= operation. Read moreSource§impl Neg for MatrixMod2
impl Neg for MatrixMod2
Source§impl Sub for MatrixMod2
impl Sub for MatrixMod2
Source§impl SubAssign for MatrixMod2
impl SubAssign for MatrixMod2
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-= operation. Read moreSource§impl TryAdd for MatrixMod2
impl TryAdd for MatrixMod2
Source§impl TryMul for MatrixMod2
impl TryMul for MatrixMod2
Auto Trait Implementations§
impl Freeze for MatrixMod2
impl RefUnwindSafe for MatrixMod2
impl Send for MatrixMod2
impl Sync for MatrixMod2
impl Unpin for MatrixMod2
impl UnwindSafe for MatrixMod2
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