negate method
Negate operation for FloatingPointValue.
Implementation
FloatingPointValue negate() => clonePopulator().populate(
sign: sign.isZero ? LogicValue.one : LogicValue.zero,
exponent: exponent,
mantissa: mantissa);
Negate operation for FloatingPointValue.
FloatingPointValue negate() => clonePopulator().populate(
sign: sign.isZero ? LogicValue.one : LogicValue.zero,
exponent: exponent,
mantissa: mantissa);