class String

Public Instance Methods

to_hex() click to toggle source
# File lib/atem/network.rb, line 5
def to_hex
        self.bytes.map{|a|"0x" + a.to_s(16)}.join(" ")
end