negate method

  1. @override
FloatingPointBF16Value negate()
override

Negate operation for FloatingPointBF16Value

Implementation

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