bit.xor (arity 2)ΒΆ
dst ^= src
dst,src are bits.
SignatureΒΆ
def xor dst, src { ... }
Defined in bit/logics.fj β lines 8β10 (view on GitHub).
ComplexityΒΆ
Time:
@-1Space:
@-1
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def xor dst, src {
.exact_xor dst + dbit, src
}
Depends onΒΆ
Used byΒΆ
Example usesΒΆ
stl.bit2hexincasting.fjbit.zeroinbit/memory.fjbit.unsafe_movinbit/memory.fj
Next: bit.xor/3 β