hex.xor_zero (arity 2)¶
dst ^= src
src = 0
both dst,src are hexes
Signature¶
def xor_zero dst, src { ... }
Defined in hex/logics.fj — lines 58–60 (view on GitHub).
Complexity¶
Time:
@+4Space:
@+28
See the complexity glossary for what @, w, dw, dbit, n mean.
Source¶
Click to view the macro body
def xor_zero dst, src {
.double_xor dst, src, src
}
Depends on¶
Used by¶
Example uses¶
hex.tables.jump_to_table_entryinhex/tables_init.fjhex.add_mulinhex/mul.fj
← Previous: hex.exact_xor
Next: hex.xor_zero/3 →