Class: Fixnum

Inherits:
Object
  • Object
show all
Defined in:
lib/boolean_conversions.rb

Instance Method Summary collapse

Instance Method Details

#to_boolObject



12
13
14
15
# File 'lib/boolean_conversions.rb', line 12

def to_bool
  return true if self >= 1
  return false if self <= 0
end