named method
Makes a clone with the provided name
and optionally naming
, then
assigns it to be driven by this
.
This is a useful utility for naming the result of some hardware construction without separately declaring a new named signal and then assigning.
Implementation
@override
LogicArray named(String name, {Naming? naming}) =>
_clone(name: name, naming: naming)..gets(this);