MCPcopy Create free account
hub / github.com/cockroachdb/apd / AndNot

Method AndNot

bigint.go:397–403  ·  view source on GitHub ↗

AndNot calls (big.Int).AndNot.

(x, y *BigInt)

Source from the content-addressed store, hash-verified

395
396// AndNot calls (big.Int).AndNot.
397func (z *BigInt) AndNot(x, y *BigInt) *BigInt {
398 var tmp1, tmp2, tmp3 big.Int //gcassert:noescape
399 zi := z.inner(&tmp1)
400 zi.AndNot(x.inner(&tmp2), y.inner(&tmp3))
401 z.updateInner(zi)
402 return z
403}
404
405// Append calls (big.Int).Append.
406func (z *BigInt) Append(buf []byte, base int) []byte {

Callers 2

altSetBitFunction · 0.80

Calls 2

innerMethod · 0.95
updateInnerMethod · 0.95

Tested by 2

altSetBitFunction · 0.64