bit/output.fjΒΆ
MacrosΒΆ
bitΒΆ
bit.outputβ Complexity @+2bit.print/1β Complexity 8@+16bit.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ΒΆ
bit.print_dec_uint.div10_stepβ if zero_flag: // if src is already 0:bit.print_dec_uint.print_charβ if char_flag: print the ascii representation of the decimal digit ascii4[:4].