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

Method mod

output/java_guava/1.4.19/UnsignedLong.java:194–196  ·  view source on GitHub ↗

Returns this modulo val. @since 14.0

(UnsignedLong val)

Source from the content-addressed store, hash-verified

192
193
194 public UnsignedLong mod(UnsignedLong val) {
195 return fromLongBits(UnsignedLongs.remainder(value, checkNotNull(val).value));
196 }
197
198 /**
199 * 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