(BigInt y)
| 177 | } |
| 178 | |
| 179 | public boolean lt(BigInt y) { |
| 180 | if ((bipart == null) && (y.bipart == null)) { |
| 181 | return lpart < y.lpart; |
| 182 | } |
| 183 | return this.toBigInteger().compareTo(y.toBigInteger()) < 0; |
| 184 | } |
| 185 | |
| 186 | } |
nothing calls this directly
no test coverage detected