rows property

List<Logic> get rows

Give access for things like ColumnCompressor. This is an output, but not yet generated?

Implementation

List<Logic> get rows {
  if (!_outputsGenerated) {
    throw RohdHclException('generate outputs before accessing rows');
  }
  return [for (var row = 0; row < _array.rows; row++) output('row_$row')];
}