Check if this Decimal256 represents zero. @return true if zero, false otherwise
()
| 1288 | * @return true if zero, false otherwise |
| 1289 | */ |
| 1290 | public boolean isZero() { |
| 1291 | return hh == 0 && hl == 0 && lh == 0 && ll == 0; |
| 1292 | } |
| 1293 | |
| 1294 | /** |
| 1295 | * In-place modulo operation. |
no outgoing calls