(BigInt y)
| 170 | } |
| 171 | |
| 172 | public BigInt remainder(BigInt y) { |
| 173 | if ((bipart == null) && (y.bipart == null)) { |
| 174 | return BigInt.valueOf(lpart % y.lpart); |
| 175 | } |
| 176 | return BigInt.fromBigInteger(this.toBigInteger().remainder(y.toBigInteger())); |
| 177 | } |
| 178 | |
| 179 | public boolean lt(BigInt y) { |
| 180 | if ((bipart == null) && (y.bipart == null)) { |
nothing calls this directly
no test coverage detected