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