row method

Vector<T> row(
  1. int row
)

Returns a mutable row vector of this matrix. Throws a RangeError, if row is out of bounds.

Implementation

Vector<T> row(int row) {
  RangeError.checkValidIndex(row, this, 'row', rowCount);
  return rowUnchecked(row);
}