Class: Float

Inherits:
Object
  • Object
show all
Defined in:
lib/fu_nil.rb

Instance Method Summary collapse

Instance Method Details

#/(x) ⇒ Object



24
25
26
27
# File 'lib/fu_nil.rb', line 24

def /(x)
  return 0 if x.zero?
  super x
end