hex.shl_hex (arity 2)¶
dst[:n] <<= 4
Signature¶
def shl_hex n, dst { ... }
Defined in hex/shifts.fj — lines 26–28 (view on GitHub).
Complexity¶
Time:
n(@+4)Space:
n(@+28)
See the complexity glossary for what @, w, dw, dbit, n mean.
Source¶
Click to view the macro body
def shl_hex n, dst {
.shl_hex n, 1, dst
}
Depends on¶
Used by¶
Example uses¶
hex.mulinhex/mul.fjhex.divinhex/div.fjhex.ptr_indexinhex/pointers/pointer_arithmetics.fj
← Previous: hex.shr_bit
Next: hex.shl_hex/3 →