bit.xor_zero (arity 3)ΒΆ

dst[:n] ^= src[:n]
src[:n] = 0
dst,src are bit[:n].

SignatureΒΆ

def xor_zero n, dst, src { ... }

Defined in bit/logics.fj β€” lines 69–71 (view on GitHub).

ComplexityΒΆ

  • Time: n@

  • Space: n@

See the complexity glossary for what @, w, dw, dbit, n mean.

SourceΒΆ


← Previous: bit.xor_zero/2 Next: bit.or/2 β†’