hex.dec¶
hex[:n]--
Signature¶
def dec n, hex @ end { ... }
Defined in hex/math_basic.fj — lines 177–180 (view on GitHub).
Complexity¶
Time:
1.067@ // It's on average. To be exact: 16/15 * @.Space:
n(1.5@+13)
See the complexity glossary for what @, w, dw, dbit, n mean.
Source¶
Click to view the macro body
def dec n, hex @ end {
rep(n, i) .dec.step hex+i*dw, end
end:
}
Used by¶
Example uses¶
hex.divinhex/div.fjhex.idivinhex/div.fjhex.print_ptr_textinhex/strings.fj
← Previous: hex.dec1
Next: hex.dec.step →