IndexMatrixExtension<T> extension

on

Methods

colIndex(Iterable<int> colIndexes) Matrix<T>
Returns a mutable view onto column indexes. Throws a RangeError, if any of the colIndexes are out of bounds.
colIndexUnchecked(Iterable<int> colIndexes) Matrix<T>
Returns a mutable view onto column indexes. The behavior is undefined, if any of the colIndexes are out of bounds.
index(Iterable<int> rowIndexes, Iterable<int> colIndexes) Matrix<T>
Returns a mutable view onto row and column indexes. Throws a RangeError, if any of the indexes are out of bounds.
indexUnchecked(Iterable<int> rowIndexes, Iterable<int> colIndexes) Matrix<T>
Returns a mutable view onto row and column indexes. The behavior is undefined if any of the indexes are out of bounds.
rowIndex(Iterable<int> rowIndexes) Matrix<T>
Returns a mutable view onto row indexes. Throws a RangeError, if any of the rowIndexes are out of bounds.
rowIndexUnchecked(Iterable<int> rowIndexes) Matrix<T>
Returns a mutable view onto row indexes. The behavior is undefined, if any of the rowIndexes are out of bounds.