Class: Numeric

Inherits:
Object show all
Defined in:
lib/extensions/class-extensions.rb

Overview

Time

Instance Method Summary collapse

Instance Method Details

#to_boolObject

Conversion 0/1 into true/false



26
27
28
# File 'lib/extensions/class-extensions.rb', line 26

def to_bool
  self == 0 ? false : true
end