negateAsFloat method Null safety
Implementation
Value negateAsFloat() {
if (this == zero) {
return this;
} else {
return Value._fromMantissaAndRawExponent(
_mantissaSign ^ _upper52, _lower12);
}
}
Value negateAsFloat() {
if (this == zero) {
return this;
} else {
return Value._fromMantissaAndRawExponent(
_mantissaSign ^ _upper52, _lower12);
}
}