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

Method dividedBy

output/java_guava/1.4.18/UnsignedLong.java:182–184  ·  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

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

Callers

nothing calls this directly

Calls 3

fromLongBitsMethod · 0.95
divideMethod · 0.95
checkNotNullMethod · 0.45

Tested by

no test coverage detected