signals property

Iterable<Logic> get signals
inherited

An Iterable of all Logics contained within this Module, including inputs, outputs, and internal signals of this Module.

This does not contain any signals within subModules.

Implementation

Iterable<Logic> get signals => UnmodifiableListView([
      ..._inputs.values,
      ..._outputs.values,
      ..._inOuts.values,
      ...internalSignals,
    ]);