class String

Public Instance Methods

is_integer() click to toggle source
# File lib/fig_magic/core_ext/string.rb, line 2
def is_integer
  true if Integer(self) rescue false
end