Returns the result of dividing this by val. @since 14.0
(UnsignedLong val)
| 181 | |
| 182 | |
| 183 | public UnsignedLong dividedBy(UnsignedLong val) { |
| 184 | return fromLongBits(UnsignedLongs.divide(value, checkNotNull(val).value)); |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * Returns this modulo {@code val}. |
nothing calls this directly
no test coverage detected