bit.xor_zero (arity 2)ΒΆ
dst ^= src
src = 0
dst,src are bits.
SignatureΒΆ
def xor_zero dst, src { ... }
Defined in bit/logics.fj β lines 61β63 (view on GitHub).
ComplexityΒΆ
Time:
@Space:
@
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def xor_zero dst, src {
.double_exact_xor dst+dbit, src+dbit, src
}
Depends onΒΆ
β Previous: bit.address_and_variable_xor
Next: bit.xor_zero/3 β