colIndexUnchecked method

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

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

Implementation

Matrix<T> colIndexUnchecked(Iterable<int> colIndexes) =>
    indexUnchecked(IntegerRange(0, rowCount), colIndexes);