# File lib/core/facets/integer/odd.rb, line 31
    def even?
      #self % 2 == 0
      self & 1 == 0
    end