Class: Integer

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby_home-srp/core_ext/integer.rb

Instance Method Summary collapse

Instance Method Details

#to_hex_string(pad_char = '0') ⇒ Object



2
3
4
5
6
7
8
9
10
# File 'lib/ruby_home-srp/core_ext/integer.rb', line 2

def to_hex_string(pad_char = '0')
  hex_string = sprintf("%x", self.to_s)

  if hex_string.length.even?
    hex_string
  else
    hex_string + pad_char
  end
end