hex.xor (arity 2)¶
dst ^= src
both dst,src are hexes
Signature¶
def xor dst, src { ... }
Defined in hex/logics.fj — lines 11–13 (view on GitHub).
Complexity¶
Time:
@Space:
@+12
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+3, dst+dbit+2, dst+dbit+1, dst+dbit+0, src
}
Depends on¶
Used by¶
Example uses¶
Next: hex.xor/3 →