bit.print_strΒΆ

Prints the first n-chars of the string at x[:8n], or until reaches the first '\0' (the earlier).

SignatureΒΆ

def print_str n, x @ end { ... }

Defined in bit/output.fj β€” lines 33–36 (view on GitHub).

ComplexityΒΆ

  • Time: min(n, len+1)*(16@+32)

  • Space: min(n, len+1)*(16@+32)

See the complexity glossary for what @, w, dw, dbit, n mean.

SourceΒΆ


← Previous: bit.print/2 Next: bit._.print_str_one_char β†’