rowUnchecked method

Vector<T> rowUnchecked(
  1. int row
)

Returns a mutable row vector of this matrix. The behavior is undefined, if row is out of bounds.

Implementation

Vector<T> rowUnchecked(int row) => RowVector<T>(this, row);