bit.print (arity 1)ΒΆ
outputs a byte from x[:8] (a bit vector. from lsb to msb).
SignatureΒΆ
def print x { ... }
Defined in bit/output.fj β lines 19β21 (view on GitHub).
ComplexityΒΆ
Time:
8@+16Space:
8@+16
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def print x {
rep(8, i) .output x+i*dw
}
Used byΒΆ
Example usesΒΆ
bit._.print_str_one_charinbit/output.fjbit.print_hex_uint.print_digitinbit/output.fj
β Previous: bit.output
Next: bit.print/2 β