Class: Integer
- Inherits:
-
Object
- Object
- Integer
- Defined in:
- lib/openstudio-standards/btap/btap.rb
Instance Method Summary collapse
-
#to_bool ⇒ Object
This method converts to Boolean.
Instance Method Details
#to_bool ⇒ Object
This method converts to Boolean.
64 65 66 67 68 |
# File 'lib/openstudio-standards/btap/btap.rb', line 64 def to_bool return true if self == 1 return false if self == 0 raise ArgumentError.new("invalid value for Boolean: \"#{self}\"") end |