class BinData::Base

def to_hex(&block)

Returns the hexadecimal string representation of this data object.
def to_hex(&block)
  to_binary_s(&block).unpack1('H*')
end