colIndex method

Matrix<T> colIndex(
  1. Iterable<int> colIndexes
)

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

Implementation

Matrix<T> colIndex(Iterable<int> colIndexes) =>
    index(IntegerRange(0, rowCount), colIndexes);