(Precise other)
| 100 | } |
| 101 | |
| 102 | public Precise sub(Precise other) { |
| 103 | Precise negative = new Precise(other.integer.negate().toString(), other.decimals); |
| 104 | return this.add(negative); |
| 105 | } |
| 106 | |
| 107 | public Precise or(Precise other) { |
| 108 | BigInteger integer = this.integer.or(other.integer); |