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
backports-3.25.0 lib/backports/1.8.7/array/product.rb
backports-3.24.1 lib/backports/1.8.7/array/product.rb
backports-3.24.0 lib/backports/1.8.7/array/product.rb
backports-3.23.0 lib/backports/1.8.7/array/product.rb
backports-3.22.1 lib/backports/1.8.7/array/product.rb
backports-3.22.0 lib/backports/1.8.7/array/product.rb
backports-3.21.0 lib/backports/1.8.7/array/product.rb
backports-3.20.2 lib/backports/1.8.7/array/product.rb
backports-3.20.1 lib/backports/1.8.7/array/product.rb
backports-3.20.0 lib/backports/1.8.7/array/product.rb
backports-3.19.0 lib/backports/1.8.7/array/product.rb
backports-3.18.2 lib/backports/1.8.7/array/product.rb
backports-3.18.1 lib/backports/1.8.7/array/product.rb
backports-3.18.0 lib/backports/1.8.7/array/product.rb
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/backports-3.12.0/lib/backports/1.8.7/array/product.rb
backports-3.17.2 lib/backports/1.8.7/array/product.rb
backports-3.17.1 lib/backports/1.8.7/array/product.rb
backports-3.17.0 lib/backports/1.8.7/array/product.rb
backports-3.16.1 lib/backports/1.8.7/array/product.rb
backports-3.16.0 lib/backports/1.8.7/array/product.rb