Class: Float
- Inherits:
-
Object
- Object
- Float
- Defined in:
- lib/guerilla.rb
Instance Method Summary collapse
Instance Method Details
#to_rb ⇒ Object
40 41 42 43 44 45 46 47 48 |
# File 'lib/guerilla.rb', line 40 def to_rb if nan? "Float::NAN" elsif infinite? "Float::INFINITY" else to_s end end |