replicate method

  1. @override
Logic replicate(
  1. int multiplier
)
override

Returns a replicated signal using ReplicationOp with new width = this.width * multiplier The input multiplier cannot be negative or 0; an exception will be thrown, otherwise.

Implementation

@override
Logic replicate(int multiplier) => packed.replicate(multiplier);