Returns this modulo val. @since 14.0
(UnsignedLong val)
| 192 | |
| 193 | |
| 194 | public UnsignedLong mod(UnsignedLong val) { |
| 195 | return fromLongBits(UnsignedLongs.remainder(value, checkNotNull(val).value)); |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Returns the value of this {@code UnsignedLong} as an {@code int}. |
nothing calls this directly
no test coverage detected