rows property

Iterable<Vector<T>> rows

Returns an iterable over the rows of this matrix.

Implementation

Iterable<Vector<T>> get rows sync* {
  for (var r = 0; r < rowCount; r++) {
    yield rowUnchecked(r);
  }
}