class Numeric

Public Instance Methods

to_bytehex() click to toggle source
# File lib/core_ext.rb, line 70
def to_bytehex
  self.to_s(16).rjust(2, '0').upcase
end