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

Method minus

output/java_guava/1.4.17/UnsignedLong.java:159–161  ·  view source on GitHub ↗

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

157
158
159 public UnsignedLong minus(UnsignedLong val) {
160 return fromLongBits(this.value - checkNotNull(val).value);
161 }
162
163 /**
164 * Returns the result of multiplying 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