class BinData::Base

def to_hex

Returns the hexadecimal string representation of this data object.
def to_hex
  to_binary_s.unpack('H*')[0]
end