Returns the result of multiplying 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)
| 169 | |
| 170 | |
| 171 | public UnsignedLong times(UnsignedLong val) { |
| 172 | return fromLongBits(value * checkNotNull(val).value); |
| 173 | } |
| 174 | |
| 175 | /** |
| 176 | * Returns the result of dividing this by {@code val}. |
nothing calls this directly
no test coverage detected