def bin_to_hex(self, bin_value): """Converts given binary to hex string. Examples: | ${hex} = | Bin to hex | Hello! | | ${hex} = | Bin to hex | ${binary} | """ return to_0xhex(bin_value)
def __hex__(self): return to_0xhex(self._value)
def __int__(self): return int(to_0xhex(self._value), 16)