[#BloombergLP-bdldfp-DecimalImpUtil_IntelDfp-notEqual-0e] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdldfp.adoc[bdldfp]::xref:BloombergLP/bdldfp/DecimalImpUtil_IntelDfp.adoc[DecimalImpUtil_IntelDfp]::notEqual :relfileprefix: ../../../ :mrdocs: Return whether two decimal values differ. == Synopsis Declared in `<bdldfp_decimalimputil_inteldfp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool notEqual( xref:BloombergLP/bdldfp/DecimalImpUtil_IntelDfp/ValueType32.adoc[ValueType32] lhs, xref:BloombergLP/bdldfp/DecimalImpUtil_IntelDfp/ValueType32.adoc[ValueType32] rhs); ---- == Description Return `false` if the specified `lhs` and `rhs` have the same value, and `true` otherwise. Two decimal objects have the same value if the `compareQuietEqual` operation (IEEE‐754 defined, non‐total ordering comparison) considers the underlying IEEE representations equal. In other words, two decimal objects have the same value if: * both have a zero value (positive or negative), or * both have the same infinity value (both positive or negative), or * both have the value of a real number that are equal, even if they are represented differently (cohorts have the same value) If either or both operands are signaling NaN, store the value of the macro `EDOM` into `errno` and return `false`. == Return Value `true` if `lhs` and `rhs` are not equal == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand decimal value | *rhs* | right‐hand decimal value |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#