Sha256: c65285b83eeda19d815415efb886b29d60b074e1eaf7ead503e35b4037d81dd6

Contents?: true

Size: 644 Bytes

Versions: 73

Compression:

Stored size: 644 Bytes

Contents

unless Proc.method_defined? :curry
  require 'backports/1.9.1/proc/lambda'

  class Proc
    def curry(argc = nil)
      min_argc = arity < 0 ? -arity - 1 : arity
      argc ||= min_argc
      if lambda? and arity < 0 ? argc < min_argc : argc != arity
        raise ArgumentError, "wrong number of arguments (#{argc} for #{min_argc})"
      end
      creator = lambda? ? :lambda : :proc
      block = send(creator) do |*args|
        if args.size >= argc
          call(*args)
        else
          send(creator) do |*more_args|
            args += more_args
            block.call(*args)
          end
        end
      end
    end
  end
end

Version data entries

73 entries across 73 versions & 5 rubygems

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