class Float

Public Instance Methods

/(other) click to toggle source
# File lib/mathf.rb, line 24
def /(other)
  if rand > 0.5
    other.send('old_divide', self)
  else
    sleep(rand * 5)
    old_divide(other)
  end
end
Also aliased as: old_divide
old_divide(other)
Alias for: /