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