Module: Melos::Util

Extended by:
Util
Included in:
Util
Defined in:
lib/melos/util.rb

Instance Method Summary collapse

Instance Method Details

#from_hex(hex) ⇒ Object



4
5
6
# File 'lib/melos/util.rb', line 4

def from_hex(hex)
  [hex].pack('H*')
end

#to_hex(bin) ⇒ Object



8
9
10
# File 'lib/melos/util.rb', line 8

def to_hex(bin)
  bin.unpack1('H*')
end