Class: Fixnum
- Inherits:
-
Object
- Object
- Fixnum
- Defined in:
- lib/beef/core_ext/fixnum/to_boolean.rb
Instance Method Summary collapse
- #to_boolean ⇒ Object (also: #to_b)
Instance Method Details
#to_boolean ⇒ Object Also known as: to_b
3 4 5 6 7 8 |
# File 'lib/beef/core_ext/fixnum/to_boolean.rb', line 3 def to_boolean case self when 0 then false else true end end |