# File lib/core/facets/enumerable/each_with_object.rb, line 28
    def each_with_object(memo) #:yield:
      each do |element|
        yield(element, memo)
      end
      memo
    end