method
multiple_of?
rails latest stable - Class:
Integer
multiple_of?(number)public
Check whether the integer is evenly divisible by the argument.
0.multiple_of?(0) # => true 6.multiple_of?(5) # => false 10.multiple_of?(2) # => true
multiple_of?(number)Check whether the integer is evenly divisible by the argument.
0.multiple_of?(0) # => true 6.multiple_of?(5) # => false 10.multiple_of?(2) # => true