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