negate method
override
Negate operation for FloatingPointBF16Value
Implementation
@override
FloatingPointBF16Value negate() => FloatingPointBF16Value(
sign: sign.isZero ? LogicValue.one : LogicValue.zero,
exponent: exponent,
mantissa: mantissa);