The list class represents a linked list.
string binary_to_hexadecimal(string bin)
Converts a binary stream to its hexadecimal represention.
string uint32_to_Hex(uint32_t i)
Converts an unsigned integer to a hexadecimal string.
string to_hanzi(int32_t nr)
Generates a Chinese numeral for a given integer.
string to_roman(int32_t nr)
Generates a Roman numeral string for an integer.
string as_hexadecimal(int i, int len)
Converts an unsigned integer to a hexadecimal string with a fixed length.
string to_padded_hex(uint8_t i)
Converts an 8-bit unsigned integer to a fixed-length (2) hex string.
string to_Roman(int32_t nr)
Generates an uppercase Roman numeral string for an integer.
int from_hex(string s)
Converts a hexadecimal string to an integer.