instiki/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb

30 lines
658 B
Ruby
Raw Normal View History

2007-01-22 14:43:50 +01:00
module ActiveSupport #:nodoc:
module CoreExtensions #:nodoc:
module Integer #:nodoc:
# For checking if a fixnum is even or odd.
#
2008-06-02 08:35:38 +02:00
# 2.even? # => true
# 2.odd? # => false
# 1.even? # => false
# 1.odd? # => true
# 0.even? # => true
# 0.odd? # => false
# -1.even? # => false
# -1.odd? # => true
2007-01-22 14:43:50 +01:00
module EvenOdd
def multiple_of?(number)
self % number == 0
end
2007-01-22 14:43:50 +01:00
def even?
multiple_of? 2
end if RUBY_VERSION < '1.9'
2007-01-22 14:43:50 +01:00
def odd?
!even?
end if RUBY_VERSION < '1.9'
2007-01-22 14:43:50 +01:00
end
end
end
end