Class: Numeric

Inherits:
Object show all
Defined in:
lib/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)


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

def blank?
  false
end