aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/integer/even_odd.rb
blob: 8f9a97b44c2a0ee4d9e0ae01071e25ee76ac7ca1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Integer
  # Check whether the integer is evenly divisible by the argument.
  def multiple_of?(number)
    self % number == 0
  end

  # Is the integer a multiple of 2?
  def even?
    multiple_of? 2
  end unless method_defined?(:even?)

  # Is the integer not a multiple of 2?
  def odd?
    !even?
  end unless method_defined?(:odd?)
end