Returns a string representation in decimal notation. Remarks: The result has at most precision decimal places.
(int precision)
| 66 | * has at most {@code precision} decimal places. |
| 67 | **/ |
| 68 | public String toDecimalString(int precision) |
| 69 | { |
| 70 | return Native.getNumeralDecimalString(getContext().nCtx(), getNativeObject(), |
| 71 | precision); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Returns a string representation of the numeral. |
no test coverage detected