Class: Numeric

Inherits:
Object show all
Defined in:
lib/gemsupport/core_ext/blank.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#blank?false

No number is blank:

1.blank? # => false
0.blank? # => false

Returns:

  • (false)


127
128
129
# File 'lib/gemsupport/core_ext/blank.rb', line 127

def blank?
  false
end