Returns the result of adding 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)
| 145 | |
| 146 | |
| 147 | public UnsignedLong plus(UnsignedLong val) { |
| 148 | return fromLongBits(this.value + checkNotNull(val).value); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Returns the result of subtracting this and {@code val}. If the result would have more than 64 |
nothing calls this directly
no test coverage detected