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

Method plus

output/java_guava/1.4.19/UnsignedLong.java:148–150  ·  view source on GitHub ↗

Returns the result of adding 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

146
147
148 public UnsignedLong plus(UnsignedLong val) {
149 return fromLongBits(this.value + checkNotNull(val).value);
150 }
151
152 /**
153 * Returns the result of subtracting this and {@code val}. If the result would have more than 64

Callers

nothing calls this directly

Calls 2

fromLongBitsMethod · 0.95
checkNotNullMethod · 0.45

Tested by

no test coverage detected