pub struct MatrixSlice<'a, C> {
pub values: &'a [C],
pub input_dimensions: MatrixDimensions,
pub view_range: MatrixRange,
}
Expand description
Slice of a matrix.
Fields§
§values: &'a [C]
Input matrix values as a single slice reference.
input_dimensions: MatrixDimensions
Dimensions of the input data.
view_range: MatrixRange
Slice or view range with respect to the input data.
Implementations§
Source§impl<'a, C> MatrixSlice<'a, C>
impl<'a, C> MatrixSlice<'a, C>
Sourcepub fn new<R: Into<MatrixRange>>(
values: &'a [C],
n_cols: usize,
range: R,
) -> Result<Self, MatrixSliceError>
pub fn new<R: Into<MatrixRange>>( values: &'a [C], n_cols: usize, range: R, ) -> Result<Self, MatrixSliceError>
Create a new slice from a matrix. Takes a reference to the input values’ slice and the number of columns in each row as well as the intended range of the slice.
Sourcepub fn index<T: Into<MatrixCoordinates>>(
&self,
coordinates: T,
) -> Result<usize, CoordinatesOutOfBoundsError>
pub fn index<T: Into<MatrixCoordinates>>( &self, coordinates: T, ) -> Result<usize, CoordinatesOutOfBoundsError>
Get the index for item access in the reference slice. The provided coordinates should be with respect to the slice’s start!
Trait Implementations§
Source§impl<'a, C: Clone> Clone for MatrixSlice<'a, C>
impl<'a, C: Clone> Clone for MatrixSlice<'a, C>
Source§fn clone(&self) -> MatrixSlice<'a, C>
fn clone(&self) -> MatrixSlice<'a, C>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a, C: Debug> Debug for MatrixSlice<'a, C>
impl<'a, C: Debug> Debug for MatrixSlice<'a, C>
Source§impl<'a, C: Default> Default for MatrixSlice<'a, C>
impl<'a, C: Default> Default for MatrixSlice<'a, C>
Source§fn default() -> MatrixSlice<'a, C>
fn default() -> MatrixSlice<'a, C>
Returns the “default value” for a type. Read more
Source§impl<C> Domain2D for MatrixSlice<'_, C>
impl<C> Domain2D for MatrixSlice<'_, C>
Source§fn range(&self) -> MatrixRange
fn range(&self) -> MatrixRange
The area spanned by this domain.
Source§fn start(&self) -> MatrixCoordinates
fn start(&self) -> MatrixCoordinates
Starting coordinate of this domain (inclusive).
Source§fn end(&self) -> MatrixCoordinates
fn end(&self) -> MatrixCoordinates
Ending coordinate of this domain (exclusive).
Source§impl<C> MatrixRef<C> for MatrixSlice<'_, C>
impl<C> MatrixRef<C> for MatrixSlice<'_, C>
Source§fn get<T: Into<MatrixCoordinates>>(
&self,
coordinates: T,
) -> Result<&C, CoordinatesOutOfBoundsError>
fn get<T: Into<MatrixCoordinates>>( &self, coordinates: T, ) -> Result<&C, CoordinatesOutOfBoundsError>
Get a matrix value at these coordinates.
Coordinates should be row and column indices with respect to the source matrix.
Source§impl<'a, C: PartialEq> PartialEq for MatrixSlice<'a, C>
impl<'a, C: PartialEq> PartialEq for MatrixSlice<'a, C>
impl<'a, C> StructuralPartialEq for MatrixSlice<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for MatrixSlice<'a, C>
impl<'a, C> RefUnwindSafe for MatrixSlice<'a, C>where
C: RefUnwindSafe,
impl<'a, C> Send for MatrixSlice<'a, C>where
C: Sync,
impl<'a, C> Sync for MatrixSlice<'a, C>where
C: Sync,
impl<'a, C> Unpin for MatrixSlice<'a, C>
impl<'a, C> UnwindSafe for MatrixSlice<'a, C>where
C: RefUnwindSafe,
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<D, T> Contains2D<D> for T
impl<D, T> Contains2D<D> for T
Source§impl<T> Contains2D<MatrixCoordinates> for Twhere
T: Domain2D,
impl<T> Contains2D<MatrixCoordinates> for Twhere
T: Domain2D,
Source§impl<D> Dimensions2D for Dwhere
D: Domain2D,
impl<D> Dimensions2D for Dwhere
D: Domain2D,
Source§fn dimensions(&self) -> MatrixDimensions
fn dimensions(&self) -> MatrixDimensions
Dimensions of the output as a dimensions object.