Class: Fixnum

Inherits:
Object show all
Defined in:
lib/math/mod.rb

Instance Method Summary collapse

Instance Method Details

#(rest, divisor) ⇒ Object



3
4
5
# File 'lib/math/mod.rb', line 3

def (rest, divisor)
  (self - rest) % divisor == 0
end