Class: Numeric

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

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#blank?Boolean

No number is blank:

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

Returns:

  • (Boolean)


102
103
104
# File 'lib/kinokero/blank.rb', line 102

def blank?
  false
end