Sha256: 384773c9522e07f8dd2687deb9ce1bcb697f7f08f8b39dac8bddd150e21aef09

Contents?: true

Size: 917 Bytes

Versions: 47

Compression:

Stored size: 917 Bytes

Contents

unless Array.method_defined? :product
  require 'backports/tools/arguments'

  class Array
    def product(*arg)
      # Implementation notes: We build a block that will generate all the combinations
      # by building it up successively using "inject" and starting with one
      # responsible to append the values.
      #
      result = []

      arg.map!{|ary| Backports.coerce_to_ary(ary)}
      n = arg.inject(size) { |p, a| p * a.size }
      return [] if n == 0
      raise RangeError, "too big a product" if n > 1<<31
      arg.reverse! # to get the results in the same order as in MRI, vary the last argument first
      arg.push self

      outer_lambda = arg.inject(result.method(:push)) do |proc, values|
        lambda do |partial|
          values.each do |val|
            proc.call(partial.dup << val)
          end
        end
      end

      outer_lambda.call([])

      result
    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.8.7/array/product.rb
backports-3.15.0 lib/backports/1.8.7/array/product.rb
backports-3.14.0 lib/backports/1.8.7/array/product.rb
backports-3.13.0 lib/backports/1.8.7/array/product.rb
backports-3.12.0 lib/backports/1.8.7/array/product.rb
backports-3.11.4 lib/backports/1.8.7/array/product.rb
backports-3.11.3 lib/backports/1.8.7/array/product.rb
backports-3.11.2 lib/backports/1.8.7/array/product.rb
backports-3.11.1 lib/backports/1.8.7/array/product.rb
backports-3.11.0 lib/backports/1.8.7/array/product.rb
backports-3.10.3 lib/backports/1.8.7/array/product.rb
backports-3.10.2 lib/backports/1.8.7/array/product.rb
backports-3.10.1 lib/backports/1.8.7/array/product.rb
backports-3.10.0 lib/backports/1.8.7/array/product.rb
backports-3.9.1 lib/backports/1.8.7/array/product.rb
backports-3.9.0 lib/backports/1.8.7/array/product.rb
backports-3.8.0 lib/backports/1.8.7/array/product.rb
backports-3.7.0 lib/backports/1.8.7/array/product.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/backports-3.6.8/lib/backports/1.8.7/array/product.rb
backports-3.6.8 lib/backports/1.8.7/array/product.rb