[#BloombergLP-bdldfp-DecimalUtil-round-0e] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdldfp.adoc[bdldfp]::xref:BloombergLP/bdldfp/DecimalUtil.adoc[DecimalUtil]::round :relfileprefix: ../../../ :mrdocs: Return the integral value nearest to the specified `x`. == Synopsis Declared in `<bdldfp_decimalutil.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:BloombergLP/bdldfp/Decimal32.adoc[Decimal32] round(xref:BloombergLP/bdldfp/Decimal32.adoc[Decimal32] x); ---- == Description Round halfway cases away from zero, regardless of the current decimal floating point rounding mode. Special value handling: * if `x` is quiet NaN, quiet NaN is returned. * If `x` is signaling NaN, quiet NaN is returned and the value of the macro `EDOM` is stored into `errno`. * if `x` is +/‐infinity or +/‐0, it is returned unmodified. Examples: `round(0.5)` ==> 1.0; round(‐0.5) ==> ‐1.0 == Return Value integral value nearest to `x` == Parameters [cols="1,4"] |=== | Name| Description | *x* | value to round to nearest integral decimal |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#