hex.print (arity 2)ΒΆ
output n bytes from x[:2n] (lsb first)
SignatureΒΆ
def print n, x { ... }
Defined in hex/output.fj β lines 71β73 (view on GitHub).
ComplexityΒΆ
Time:
n(2@)Space:
n(2@+52)
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def print n, x {
rep(n, i) .print x+2*i*dw
}
β Previous: hex.print/1
Next: hex.print_as_digit/2 β