multiple_of?(number)
Instance Public methods
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
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
Please login to continue.