Struct nalgebra::core::SliceStorage [] [src]

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

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

Methods

impl<'a, N: Scalar, R: Dim, C: Dim> SliceStorage<'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: Scalar, R: Dim, C: Dim, RStride: Dim, CStride: Dim, Alloc> Copy for SliceStorage<'a, N, R, C, RStride, CStride, Alloc>
[src]

impl<'a, N: Scalar, R: Dim, C: Dim, RStride: Dim, CStride: Dim, Alloc> Clone for SliceStorage<'a, N, R, C, RStride, CStride, Alloc>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a, N, R: Dim, C: Dim, RStride: Dim, CStride: Dim, Alloc> Storage<N, R, C> for SliceStorage<'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.