Class: Fixnum

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

Instance Method Summary collapse

Instance Method Details

#/(x) ⇒ Object



15
16
17
18
# File 'lib/fu_nil.rb', line 15

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