class String

Public Instance Methods

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