Struct nalgebra::core::SliceStorageMut [] [src]

pub struct SliceStorageMut<'a, N: Scalar, R: Dim, C: Dim, RStride: Dim, CStride: Dim, Alloc> { /* fields omitted */ }

A mutable matrix data storage for mutable matrix slice. Only contains an internal mutable reference to another matrix data storage.

Methods

impl<'a, N: Scalar, R: Dim, C: Dim> SliceStorageMut<'a, N, R, C, Dynamic, Dynamic, ()>
[src]

Create a new matrix slice without bound checking.

Create a new matrix slice without bound checking.

Trait Implementations

impl<'a, N, R: Dim, C: Dim, RStride: Dim, CStride: Dim, Alloc> Storage<N, R, C> for SliceStorageMut<'a, N, R, C, RStride, CStride, Alloc> where
    N: Scalar,
    Alloc: Allocator<N, R, C>, 
[src]

The static stride of this storage's rows.

The static stride of this storage's columns.

The allocator for this family of storage.

Builds a matrix data storage that does not contain any reference.

Clones this data storage into one that does not contain any reference.

The matrix data pointer.

The dimension of the matrix at run-time. Arr length of zero indicates the additive identity element of any dimension. Must be equal to Self::dimension() if it is not None. Read more

The spacing between concecutive row elements and consecutive column elements. Read more

Compute the index corresponding to the irow-th row and icol-th column of this matrix. The index must be such that the following holds: Read more

Gets the address of the i-th matrix component without performing bound-checking.

Gets the address of the i-th matrix component without performing bound-checking.

Retrieves a reference to the i-th element without bound-checking.

Retrieves a reference to the i-th element without bound-checking.

impl<'a, N, R: Dim, C: Dim, RStride: Dim, CStride: Dim, Alloc> StorageMut<N, R, C> for SliceStorageMut<'a, N, R, C, RStride, CStride, Alloc> where
    N: Scalar,
    Alloc: Allocator<N, R, C>, 
[src]

The matrix mutable data pointer.

Gets the mutable address of the i-th matrix component without performing bound-checking.

Gets the mutable address of the i-th matrix component without performing bound-checking.

Retrieves a mutable reference to the i-th element without bound-checking.

Retrieves a mutable reference to the element at (irow, icol) without bound-checking.

Swaps two elements using their linear index without bound-checking.

Swaps two elements without bound-checking.