indexUnchecked method

Matrix<T> indexUnchecked(
  1. Iterable<int> rowIndexes,
  2. Iterable<int> colIndexes
)

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

Implementation

Matrix<T> indexUnchecked(
        Iterable<int> rowIndexes, Iterable<int> colIndexes) =>
    _indexUnchecked(this, rowIndexes, colIndexes);