aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/fixnum/even_odd.rb
blob: c0e9da18fab8404d279b204688ddcdc36a1a899a (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                 



                                
                 
                        








                
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 multiple_of?(number)
          self % number == 0
        end
        
        def even?
          multiple_of? 2
        end
        
        def odd?
          !even?
        end
      end
    end
  end
end