frexp

Separates _decimal _value into coefficient and exponent. This operation is silent, doesn't throw any exception.

D
frexp
(
D
)
(
auto const ref D x
,
out int y
)

Return Value

Type: D

a result such as x = result * 10y and |result| < 1.0

Special values

xyfrexp(x, y)
NaN0NaN
+∞0+∞
-∞0-∞
±0.00±0.0

Notes: This operation is silent, doesn't throw any exceptions and doesn't set any error flags. Signaling NaNs are quieted by this operation

Meta