hex/input.fj¶
———- Input Hex
Macros¶
hex¶
hex.input_hex— hex := input(4bits) // lsb firsthex.input/1—byte[:2]= input(8bits) // lsb firsthex.input/2—bytes[:2n]= input(8n-bits) // lsb firsthex.input_as_hex/2—hex = hex_from_ascii(input(1byte))hex.input_as_hex/3—hex[:n] = hex_from_ascii(input(n-bytes))hex.input_dec_uint_until—dst[:n]= the unsigned decimal number read from input (mod 16^n).hex.input_dec_int_until—dst[:n]= the signed decimal number read from input (two’s complement, mod 16^n).hex.input_dec_uint—dst[:n]= the unsigned decimal number read from input (mod 16^n).hex.input_dec_int—dst[:n]= the signed decimal number read from input (two’s complement, mod 16^n).