rowIndex method

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

Returns a mutable view onto row indexes. Throws a RangeError, if any of the rowIndexes are out of bounds.

Implementation

Matrix<T> rowIndex(Iterable<int> rowIndexes) =>
    index(rowIndexes, IntegerRange(0, colCount));