hex.xor (arity 3)¶
dst[:n] ^= src[:n]
Signature¶
def xor n, dst, src { ... }
Defined in hex/logics.fj — lines 18–20 (view on GitHub).
Complexity¶
Time:
n@Space:
n(@+12)
See the complexity glossary for what @, w, dw, dbit, n mean.
Source¶
Click to view the macro body
def xor n, dst, src {
rep (n, i) .xor dst+i*dw, src+i*dw
}
Used by¶
Example uses¶
← Previous: hex.xor/2
Next: hex.exact_xor →