You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ion_decimal_is_negative currently returns a different value for negative zero depending on whether it is represented with a decQuad or decNumber under the hood. In order to fix this, we should add ion_decimal_is_signed, which would call decQuadIsSigned for decQuad and decNumberIsNegative for decNumber. Then we should document ion_decimal_is_negative's subtly different behavior and deprecate it.
ion_decimal_is_negative
currently returns a different value for negative zero depending on whether it is represented with adecQuad
ordecNumber
under the hood. In order to fix this, we should addion_decimal_is_signed
, which would calldecQuadIsSigned
fordecQuad
anddecNumberIsNegative
fordecNumber
. Then we should documention_decimal_is_negative
's subtly different behavior and deprecate it.For more information, see #249
The text was updated successfully, but these errors were encountered: