Method: Numeric#blank?

Defined in:
activesupport/lib/active_support/core_ext/object/blank.rb

#blank?false

No number is blank:

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

Returns:

  • (false)


177
178
179
# File 'activesupport/lib/active_support/core_ext/object/blank.rb', line 177

def blank?
  false
end