MCPcopy Create free account
hub / github.com/antlr/codebuff / dividedBy

Method dividedBy

output/java_guava/1.4.19/UnsignedLong.java:183–185  ·  view source on GitHub ↗

Returns the result of dividing this by val. @since 14.0

(UnsignedLong val)

Source from the content-addressed store, hash-verified

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}.

Callers

nothing calls this directly

Calls 3

fromLongBitsMethod · 0.95
divideMethod · 0.95
checkNotNullMethod · 0.45

Tested by

no test coverage detected