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

Method times

output/java_guava/1.4.17/UnsignedLong.java:171–173  ·  view source on GitHub ↗

Returns the result of multiplying this and val. If the result would have more than 64 bits, returns the low 64 bits of the result. @since 14.0

(UnsignedLong val)

Source from the content-addressed store, hash-verified

169
170
171 public UnsignedLong times(UnsignedLong val) {
172 return fromLongBits(value * checkNotNull(val).value);
173 }
174
175 /**
176 * Returns the result of dividing this by {@code val}.

Callers

nothing calls this directly

Calls 2

fromLongBitsMethod · 0.95
checkNotNullMethod · 0.45

Tested by

no test coverage detected