()
| 141 | } |
| 142 | |
| 143 | public Precise abs() { |
| 144 | BigInteger result = (this.integer.compareTo(BigInteger.ZERO) < 0) |
| 145 | ? this.integer.negate() |
| 146 | : this.integer; |
| 147 | return new Precise(result.toString(), this.decimals); |
| 148 | } |
| 149 | |
| 150 | public Precise reduce() { |
| 151 | String str = this.integer.toString(); |
no test coverage detected