Sha256: 6e79ce724563155f1cab80028321edf2f8fd153338ae5399cae6308f2ab5d653

Contents?: true

Size: 786 Bytes

Versions: 47

Compression:

Stored size: 786 Bytes

Contents

unless Array.method_defined? :repeated_permutation
  require 'backports/tools/arguments'
  require 'backports/1.8.7/array/index'

  class Array
    # Note: Permutations are not yielded in the same order as MRI.
    # This is not a bug; the spec states that the order is implementation dependent!!!
    def repeated_permutation(num)
      return to_enum(:repeated_permutation, 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 size-1, 0, dec
          indices[dec] -= 1
          yield copy.values_at(*indices)
        end
      end
      self
    end
  end
end

Version data entries

47 entries across 47 versions & 4 rubygems

Version Path
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/backports-3.15.0/lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.15.0 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.14.0 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.13.0 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.12.0 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.11.4 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.11.3 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.11.2 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.11.1 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.11.0 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.10.3 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.10.2 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.10.1 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.10.0 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.9.1 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.9.0 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.8.0 lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.7.0 lib/backports/1.9.2/array/repeated_permutation.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/backports-3.6.8/lib/backports/1.9.2/array/repeated_permutation.rb
backports-3.6.8 lib/backports/1.9.2/array/repeated_permutation.rb