Returns a string representation of the BigFloat in exponential notation
rounded to the specifie number of digits.
toPrecision(digits, roundingMode?, radix?)
digits
The number of digits after the decimal point.
roundingMode optional
A rounding mode as in BigFloatEnv. Defaults to BigFloatEnv.RNDNA (Round to nearest, with ties away from zero rounding mode).
radix optional
The radix of the result between 2 and 36. Defaults to 10.
A string representing the value in exponential notation.
123.4567l.toExponential(1)
"1e+2"
123.4567l.toExponential(4)
"1.2346e+2"
123.4567l.toExponential(4, BigFloatEnv.RNDD, 16)
"7.b74ep+4