MCPcopy Index your code
hub / github.com/antlr/codebuff / plus

Method plus

output/java_guava/1.4.17/UnsignedLong.java:147–149  ·  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

145
146
147 public UnsignedLong plus(UnsignedLong val) {
148 return fromLongBits(this.value + checkNotNull(val).value);
149 }
150
151 /**
152 * 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