hex.input (arity 2)ΒΆ
bytes[:2n] = input(8n-bits) // lsb first
SignatureΒΆ
def input n, bytes { ... }
Defined in hex/input.fj β lines 40β42 (view on GitHub).
ComplexityΒΆ
Time:
n(4@+14)Space:
n(4@+36)
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def input n, bytes {
rep(n, i) .input bytes+2*i*dw
}
β Previous: hex.input/1
Next: hex.input_as_hex/2 β