RangeMatrixExtension<T> extension

on

Methods

colRange(int columnStart, [int? columnEnd]) Matrix<T>
Returns a mutable view onto the row range. Throws a RangeError, if columnStart or columnEnd are out of bounds.
colRangeUnchecked(int columnStart, int columnEnd) Matrix<T>
Returns a mutable view onto the row range. The behavior is undefined, if columnStart or columnEnd are out of bounds.
range(int rowStart, int rowEnd, int columnStart, int columnEnd) Matrix<T>
Returns a mutable view onto the row and column ranges. Throws a RangeError, if any of the ranges are out of bounds.
rangeUnchecked(int rowStart, int rowEnd, int columnStart, int columnEnd) Matrix<T>
Returns a mutable view onto the row and column ranges. The behavior is undefined if any of the ranges are out of bounds.
rowRange(int rowStart, [int? rowEnd]) Matrix<T>
Returns a mutable view onto the row range. Throws a RangeError, if rowStart or rowEnd are out of bounds.
rowRangeUnchecked(int rowStart, int rowEnd) Matrix<T>
Returns a mutable view onto the row range. The behavior is undefined, if rowStart or rowEnd are out of bounds.