Class: Float
Instance Method Summary collapse
Instance Method Details
#approx_equal?(other, threshold = 0.00000000001) ⇒ Boolean
2 3 4 |
# File 'lib/core_ext/float.rb', line 2 def approx_equal?(other,threshold=0.00000000001) (self-other).abs < threshold end |