Ejemplo n.º 1
0
    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)
Ejemplo n.º 2
0
    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)
Ejemplo n.º 3
0
 def __hex__(self):
     return to_0xhex(self._value)
Ejemplo n.º 4
0
 def __int__(self):
     return int(to_0xhex(self._value), 16)
Ejemplo n.º 5
0
 def __hex__(self):
     return to_0xhex(self._value)
Ejemplo n.º 6
0
 def __int__(self):
     return int(to_0xhex(self._value), 16)