Class: Float
- Defined in:
- opal/opal/corelib/number.rb,
opal/opal/corelib/marshal/write_buffer.rb
Constant Summary
- INFINITY =
`Infinity`
- MAX =
`Number.MAX_VALUE`
- MIN =
`Number.MIN_VALUE`
- NAN =
`NaN`
- DIG =
15
- MANT_DIG =
53
- RADIX =
2
- EPSILON =
`Number.EPSILON`
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Numeric
#%, #+@, #-@, #<=>, #[], #__coerced__, #abs, #abs2, #angle, #ceil, #clone, #coerce, #conj, #denominator, #div, #divmod, #dup, #fdiv, #floor, #i, #imag, #integer?, #negative?, #nonzero?, #numerator, #polar, #positive?, #quo, #real, #real?, #rect, #round, #to_c, #to_int, #truncate, #zero?
Methods included from Comparable
#<, #<=, #==, #>, #>=, #between?, normalize
Class Method Details
.===(other) ⇒ Object
734 735 736 |
# File 'opal/opal/corelib/number.rb', line 734 def self.===(other) `!!other.$$is_number` end |
Instance Method Details
#__marshal__(buffer) ⇒ Object
25 26 27 28 29 |
# File 'opal/opal/corelib/marshal/write_buffer.rb', line 25 def __marshal__(buffer) buffer.save_link(self) buffer.append('f') buffer.write_float(self) end |