[#BloombergLP-bdldfp-DecimalUtil-quantize-04] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdldfp.adoc[bdldfp]::xref:BloombergLP/bdldfp/DecimalUtil.adoc[DecimalUtil]::quantize :relfileprefix: ../../../ :mrdocs: `quantize` overloads == Synopses Declared in `<bdldfp_decimalutil.h>` Same as the related overload above for `quantize`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:BloombergLP/bdldfp/Decimal128.adoc[Decimal128] xref:BloombergLP/bdldfp/DecimalUtil/quantize-0c.adoc[quantize]( xref:BloombergLP/bdldfp/Decimal128.adoc[Decimal128] value, xref:BloombergLP/bdldfp/Decimal128.adoc[Decimal128] exponent); ---- [.small]#xref:BloombergLP/bdldfp/DecimalUtil/quantize-0c.adoc[_» more..._]# Same as the overload taking `Decimal64`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:BloombergLP/bdldfp/Decimal128.adoc[Decimal128] xref:BloombergLP/bdldfp/DecimalUtil/quantize-05.adoc[quantize]( xref:BloombergLP/bdldfp/Decimal128.adoc[Decimal128] value, int exponent); ---- [.small]#xref:BloombergLP/bdldfp/DecimalUtil/quantize-05.adoc[_» more..._]# Return a number equal to the specified `value` (except for possible rounding) having the exponent equal to the exponent of the specified `exponent`. Rounding may occur when the exponent is greater than the quantum of `value`. E.g., `quantize(147e‐2_d32, 1e‐1_d32)` yields `15e‐1_d32`. In the opposite direction, if `exponent` is sufficiently less than the quantum of `value`, it may not be possible to construct the requested result, and if so, `NaN` is returned. E.g., `quantize(1234567e0_d32, 1e‐1_d32)` returns `NaN`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:BloombergLP/bdldfp/Decimal32.adoc[Decimal32] xref:BloombergLP/bdldfp/DecimalUtil/quantize-02.adoc[quantize]( xref:BloombergLP/bdldfp/Decimal32.adoc[Decimal32] value, xref:BloombergLP/bdldfp/Decimal32.adoc[Decimal32] exponent); ---- [.small]#xref:BloombergLP/bdldfp/DecimalUtil/quantize-02.adoc[_» more..._]# Return a number equal to the specified `value` (except for possible rounding) having the specified `exponent`. Rounding may occur when `exponent` is greater than the quantum of `value`. E.g., `quantize(147e‐2_d32, ‐1)` yields `15e‐1_d32`. In the opposite direction, if `exponent` is sufficiently less than the quantum of `value`, it may not be possible to construct the requested result, and if so, `NaN` is returned. E.g., `quantize(1234567e0_d32, ‐1)` returns `NaN`. Behavior is undefined unless the `exponent` satisfies the following conditions * for `Decimal32` type: `‐101 <= exponent <= 90` * for `Decimal64` type: `‐398 <= exponent <= 369` * for `Decimal128` type: `‐6176 <= exponent <= 6111` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:BloombergLP/bdldfp/Decimal32.adoc[Decimal32] xref:BloombergLP/bdldfp/DecimalUtil/quantize-011.adoc[quantize]( xref:BloombergLP/bdldfp/Decimal32.adoc[Decimal32] value, int exponent); ---- [.small]#xref:BloombergLP/bdldfp/DecimalUtil/quantize-011.adoc[_» more..._]# Same as the related overload above for `quantize`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:BloombergLP/bdldfp/Decimal64.adoc[Decimal64] xref:BloombergLP/bdldfp/DecimalUtil/quantize-06.adoc[quantize]( xref:BloombergLP/bdldfp/Decimal64.adoc[Decimal64] value, xref:BloombergLP/bdldfp/Decimal64.adoc[Decimal64] exponent); ---- [.small]#xref:BloombergLP/bdldfp/DecimalUtil/quantize-06.adoc[_» more..._]# Same as the related overload above for `quantize`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static xref:BloombergLP/bdldfp/Decimal64.adoc[Decimal64] xref:BloombergLP/bdldfp/DecimalUtil/quantize-01d.adoc[quantize]( xref:BloombergLP/bdldfp/Decimal64.adoc[Decimal64] value, int exponent); ---- [.small]#xref:BloombergLP/bdldfp/DecimalUtil/quantize-01d.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#