[#BloombergLP-bdldfp-DecimalImpUtil_IntelDfp-greaterEqual-00] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdldfp.adoc[bdldfp]::xref:BloombergLP/bdldfp/DecimalImpUtil_IntelDfp.adoc[DecimalImpUtil_IntelDfp]::greaterEqual :relfileprefix: ../../../ :mrdocs: Return `true` if the specified `lhs` has a value greater than or equal to the value of the specified `rhs` and `false` otherwise. The value of a `Decimal64` object `lhs` is greater or equal to a `Decimal64` object `rhs` if the `compareQuietGreaterEqual` operation (IEEE‐754 defined, non‐total ordering comparison ) considers the underlying IEEE representation of `lhs` to be greater or equal to that of `rhs`. In other words, `lhs` is greater than or equal to `rhs` if: == Synopsis Declared in `<bdldfp_decimalimputil_inteldfp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool greaterEqual( xref:BloombergLP/bdldfp/DecimalImpUtil_IntelDfp/ValueType32.adoc[ValueType32] lhs, xref:BloombergLP/bdldfp/DecimalImpUtil_IntelDfp/ValueType32.adoc[ValueType32] rhs); ---- == Description * neither `lhs` nor `rhs` are NaN, or * `lhs` and `rhs` are both zero (positive or negative), or * both `lhs` and `rhs` are negative infinity, or * `lhs` is positive infinity, or * `lhs` and `rhs` both represent a real number and the real number of `lhs` is greater or equal to that of `rhs` If either or both operands are signaling NaN, store the value of the macro `EDOM` into `errno` and return `false`. [.small]#Created with https://www.mrdocs.com[MrDocs]#