Class: Numeric

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

Overview

reopening Numeric class

Instance Method Summary collapse

Instance Method Details

#blank?false

No number is blank:

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

Returns:

  • (false)


141
142
143
# File 'lib/core_ext/blank.rb', line 141

def blank?
  false
end