bit/casting.fjΒΆ

β€”β€”β€”- String:

View source on GitHub

MacrosΒΆ

bitΒΆ

  • bit.str β€” create a bit-vector, initialized with the value of β€˜str’, and with the number of bytes needed to store β€˜str’, plus 1.

  • bit.bin2ascii β€” Complexity 9@-7

  • bit.dec2ascii β€” Complexity 12@-10

  • bit.hex2ascii β€” ascii is bit[:8], hex is bit[:4].

  • bit.ascii2bin β€” ascii is bit[:8], and error(output-param),bin are bits.

  • bit.ascii2dec β€” ascii is bit[:8], dec in bit[:4], and error(output-param) is a bit.

  • bit.ascii2hex β€” ascii is bit[:8], hex in bit[:4], and error(output-param) is a bit.