stages property

List<Logic> stages
latefinal

A List of outputs where the n'th entry corresponds to a version of the input data after passing through n + 1 flops.

The length is equal to depth. The last entry is the same as dataOut.

Implementation

late final List<Logic> stages =
    UnmodifiableListView(List.generate(depth, (i) => output(_stageName(i))));