Returns the result of subtracting this and val. If the result would have more than 64 bits, returns the low 64 bits of the result. @since 14.0
(UnsignedLong val)
| 157 | |
| 158 | |
| 159 | public UnsignedLong minus(UnsignedLong val) { |
| 160 | return fromLongBits(this.value - checkNotNull(val).value); |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * Returns the result of multiplying this and {@code val}. If the result would have more than 64 |
nothing calls this directly
no test coverage detected