rowRangeUnchecked method

Matrix<T> rowRangeUnchecked(
  1. int rowStart,
  2. int rowEnd
)

Returns a mutable view onto the row range. The behavior is undefined, if rowStart or rowEnd are out of bounds.

Implementation

Matrix<T> rowRangeUnchecked(int rowStart, int rowEnd) =>
    rangeUnchecked(rowStart, rowEnd, 0, colCount);