hex.shr_hex (arity 2)¶
dst[:n] >>= 4
Signature¶
def shr_hex n, dst { ... }
Defined in hex/shifts.fj — lines 45–47 (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 shr_hex n, dst {
.shr_hex n, 1, dst
}
Depends on¶
Used by¶
Example uses¶
hex.mulinhex/mul.fj
← Previous: hex.shl_hex/3
Next: hex.shr_hex/3 →