pub struct ConstMatrix<S: Semiring, const R: usize, const C: usize> { /* private fields */ }Expand description
$R \times C$の行列
Implementations§
Source§impl<S: Semiring, const N: usize> ConstMatrix<S, N, N>
impl<S: Semiring, const N: usize> ConstMatrix<S, N, N>
Trait Implementations§
Source§impl<S: Clone + Semiring, const R: usize, const C: usize> Clone for ConstMatrix<S, R, C>
impl<S: Clone + Semiring, const R: usize, const C: usize> Clone for ConstMatrix<S, R, C>
Source§fn clone(&self) -> ConstMatrix<S, R, C>
fn clone(&self) -> ConstMatrix<S, R, C>
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<S: Semiring, const R: usize, const C: usize> MatrixTranspose for ConstMatrix<S, R, C>
impl<S: Semiring, const R: usize, const C: usize> MatrixTranspose for ConstMatrix<S, R, C>
Source§impl<S: Semiring + Clone, const R: usize, const C: usize, const C2: usize> Mul<ConstMatrix<S, C, C2>> for ConstMatrix<S, R, C>
impl<S: Semiring + Clone, const R: usize, const C: usize, const C2: usize> Mul<ConstMatrix<S, C, C2>> for ConstMatrix<S, R, C>
Source§type Output = ConstMatrix<S, R, C2>
type Output = ConstMatrix<S, R, C2>
The resulting type after applying the
* operator.Source§impl<S: PartialEq + Semiring, const R: usize, const C: usize> PartialEq for ConstMatrix<S, R, C>
impl<S: PartialEq + Semiring, const R: usize, const C: usize> PartialEq for ConstMatrix<S, R, C>
impl<S: Eq + Semiring, const R: usize, const C: usize> Eq for ConstMatrix<S, R, C>
impl<S: Semiring, const R: usize, const C: usize> StructuralPartialEq for ConstMatrix<S, R, C>
Auto Trait Implementations§
impl<S, const R: usize, const C: usize> Freeze for ConstMatrix<S, R, C>
impl<S, const R: usize, const C: usize> RefUnwindSafe for ConstMatrix<S, R, C>
impl<S, const R: usize, const C: usize> Send for ConstMatrix<S, R, C>
impl<S, const R: usize, const C: usize> Sync for ConstMatrix<S, R, C>
impl<S, const R: usize, const C: usize> Unpin for ConstMatrix<S, R, C>
impl<S, const R: usize, const C: usize> UnwindSafe for ConstMatrix<S, R, C>
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