aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/fixnum/even_odd.rb
blob: 1fa6b95846759398740d7da5bcfeba1ac200623e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Fixnum #:nodoc:
      # For checking if a fixnum is even or odd. 
      # * 1.even? # => false
      # * 1.odd?  # => true
      # * 2.even? # => true
      # * 2.odd? # => false
      module EvenOdd
        def even?
          self % 2 == 0
        end
        
        def odd?
          !even?
        end
      end
    end
  end
end