# File lib/backports/1.9.2/array/repeated_combination.rb, line 8
    def repeated_combination(num)
      return to_enum(:repeated_combination, num) unless block_given?
      num = Backports.coerce_to_int(num)
      if num <= 0
        yield [] if num == 0
      else
        copy = dup
        indices = Array.new(num, 0)
        indices[-1] = size
        while dec = indices.index{|x| x != 0}
          indices.fill indices[dec]-1, 0, dec + 1
          yield copy.values_at(*indices)
        end
      end
      self
    end