bit.input (arity 2)ΒΆ
Effectively inputs an 8*n bits little endian number into dst[:8n].
dst is an output parameter.
SignatureΒΆ
def input n, dst { ... }
Defined in bit/input.fj β lines 26β28 (view on GitHub).
ComplexityΒΆ
Time:
n(16@-16)Space:
n(16@-16)
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def input n, dst {
rep(n, i) .input dst+8*(n-1-i)*dw
}
β Previous: bit.input/1