Alias Mat.RowSeq

Alias to a type sequence holding all rows

struct Mat
{
  // ...
  alias RowSeq = Repeat!(rowLength,Row);
  // ...
}