rowIndexUnchecked method

Matrix<T> rowIndexUnchecked(
  1. Iterable<int> rowIndexes
)

Returns a mutable view onto row indexes. The behavior is undefined, if any of the rowIndexes are out of bounds.

Implementation

Matrix<T> rowIndexUnchecked(Iterable<int> rowIndexes) =>
    indexUnchecked(rowIndexes, IntegerRange(0, colCount));