negate method

FloatingPoint negate()

Negate the FloatingPoint.

Implementation

FloatingPoint negate() => FloatingPoint._(
      Logic()..gets(~sign),
      Logic(width: exponent.width)..gets(exponent),
      Logic(width: mantissa.width)..gets(mantissa),
      explicitJBit,
      subNormalAsZero,
      name: name,
    );