hex.set (arity 2)¶
hex = val (constant)
Signature¶
def set hex, val { ... }
Defined in hex/memory.fj — lines 86–89 (view on GitHub).
Complexity¶
Time:
@+4Space:
@+16
See the complexity glossary for what @, w, dw, dbit, n mean.
Source¶
Click to view the macro body
def set hex, val {
.zero hex
.xor_by hex, val
}
Depends on¶
← Previous: hex.xor_by/3
Next: hex.set/3 →