Sha256: 1a3e4a709e7e92f8c0c532fd36014c7624b0e03fccd7f6af2e8c19b69c20e31e
Contents?: true
Size: 849 Bytes
Versions: 101
Compression:
Stored size: 849 Bytes
Contents
module Tins module PartialApplication # If this module is included into a Proc (or similar object), it tampers # with its Proc#arity method. def self.included(modul) modul.module_eval do old_arity = instance_method(:arity) define_method(:arity) do @__arity__ or old_arity.bind(self).call end end super end # Create a partial application of this Proc (or similar object) using # _args_ as the already applied arguments. def partial(*args) if args.empty? dup elsif args.size > arity raise ArgumentError, "wrong number of arguments (#{args.size} for #{arity})" else f = lambda { |*b| call(*(args + b)) } f.instance_variable_set :@__arity__, arity - args.size f end end end end require 'tins/alias'
Version data entries
101 entries across 98 versions & 9 rubygems