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

Method mod

output/java_guava/1.4.16/UnsignedLong.java:193–195  ·  view source on GitHub ↗

Returns this modulo val. @since 14.0

(UnsignedLong val)

Source from the content-addressed store, hash-verified

191
192
193 public UnsignedLong mod(UnsignedLong val) {
194 return fromLongBits(UnsignedLongs.remainder(value, checkNotNull(val).value));
195 }
196
197 /**
198 * Returns the value of this {@code UnsignedLong} as an {@code int}.

Callers

nothing calls this directly

Calls 3

fromLongBitsMethod · 0.95
remainderMethod · 0.95
checkNotNullMethod · 0.45

Tested by

no test coverage detected