colRangeUnchecked method

Matrix<T> colRangeUnchecked(
  1. int columnStart,
  2. int columnEnd
)

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

Implementation

Matrix<T> colRangeUnchecked(int columnStart, int columnEnd) =>
    rangeUnchecked(0, rowCount, columnStart, columnEnd);