Example #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)
Example #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)
Example #3
0
 def __hex__(self):
     return to_0xhex(self._value)
Example #4
0
 def __int__(self):
     return int(to_0xhex(self._value), 16)
Example #5
0
 def __hex__(self):
     return to_0xhex(self._value)
Example #6
0
 def __int__(self):
     return int(to_0xhex(self._value), 16)