RangeMatrixExtension<T> extension
- on
-
- Matrix<
T>
- Matrix<
Methods
-
colRange(
int columnStart, [int? columnEnd]) → Matrix< T> -
Available on Matrix<
Returns a mutable view onto the row range. Throws a RangeError, ifT> , provided by the RangeMatrixExtension extensioncolumnStartorcolumnEndare out of bounds. -
colRangeUnchecked(
int columnStart, int columnEnd) → Matrix< T> -
Available on Matrix<
Returns a mutable view onto the row range. The behavior is undefined, ifT> , provided by the RangeMatrixExtension extensioncolumnStartorcolumnEndare out of bounds. -
range(
int rowStart, int rowEnd, int columnStart, int columnEnd) → Matrix< T> -
Available on Matrix<
Returns a mutable view onto the row and column ranges. Throws a RangeError, if any of the ranges are out of bounds.T> , provided by the RangeMatrixExtension extension -
rangeUnchecked(
int rowStart, int rowEnd, int columnStart, int columnEnd) → Matrix< T> -
Available on Matrix<
Returns a mutable view onto the row and column ranges. The behavior is undefined if any of the ranges are out of bounds.T> , provided by the RangeMatrixExtension extension -
rowRange(
int rowStart, [int? rowEnd]) → Matrix< T> -
Available on Matrix<
Returns a mutable view onto the row range. Throws a RangeError, ifT> , provided by the RangeMatrixExtension extensionrowStartorrowEndare out of bounds. -
rowRangeUnchecked(
int rowStart, int rowEnd) → Matrix< T> -
Available on Matrix<
Returns a mutable view onto the row range. The behavior is undefined, ifT> , provided by the RangeMatrixExtension extensionrowStartorrowEndare out of bounds.