clone method

  1. @override
FloatingPoint clone({
  1. String? name,
})
override

Creates a new LogicStructure with the same structure as this.

Implementation

@override
FloatingPoint clone({String? name}) => FloatingPoint(
      exponentWidth: exponent.width,
      mantissaWidth: mantissa.width,
    );