bit/output.fjΒΆ

View source on GitHub

MacrosΒΆ

bitΒΆ

  • bit.output β€” Complexity @+2

  • bit.print/1 β€” Complexity 8@+16

  • bit.print/2 β€” Complexity n(8@+16)

  • bit.print_str β€” Complexity min(n, len+1)*(16@+32)

  • bit.print_as_digit/1 β€” prints the ascii character β€˜0’/’1’, based on x’s value.

  • bit.print_as_digit/2 β€” prints x[:n] as n ascii-characters (β€˜0’s and β€˜1’s, lsb first).

  • bit.print_hex_uint β€” print x[:n] as an unsigned hexadecimal number, without leading zeros (digits & capital-letters).

  • bit.print_hex_int β€” print x[:n] as a signed hexadecimal number, without leading zeros (digits & capital-letters).

  • bit.print_dec_uint β€” prints x[:n] as an unsigned decimal number (without leading zeros).

  • bit.print_dec_int β€” prints x[:n] as a signed decimal number (without leading zeros).

bit._ΒΆ

bit.print_hex_uintΒΆ

bit.print_dec_uintΒΆ