Sha256: 2279ce111cbf5f4d990002de3416b2fbd8e0e7234eb8f32461df0c44eb84ede0

Contents?: true

Size: 1.05 KB

Versions: 3

Compression:

Stored size: 1.05 KB

Contents

require 'facets/functor'

class Object

  # Objectified message or block application. Only a message
  # or a block can be given, not both.
  #
  # msg - method and arguments [Array]
  # blk - procedure block [Proc]
  #
  # Examples
  #
  #   a = [1,2,3,4,5]
  #   c = a.against(:>, 2)
  #   c.select  #=> [3,4,5]
  #
  #   a = [1,2,3,4,5]
  #   c = a.against(:>)
  #   c.select(2)  #=> [3,4,5]
  #
  # Returns [Functor]
  #
  # TODO: Better name for this method?

  def against(*msg, &blk)
    raise ArgumentError, "too many arguments" if blk && !msg.empty?

	  this = self

    blk = ::Proc.new{ |x,*a| x.__send__(*msg, *a) } unless blk

    #if blk
		  Functor.new do |m, *a, &b|
			  if b
			    b2 = ::Proc.new{ |*x| blk.call(*b.call(*x), *a) }
        else
          b2 = blk
			  end
			  this.__send__(m, &b2)
		  end
    #else
	  #	Functor.new do |m, *a, &b|
	  #		if b
	  #		  b2 = ::Proc.new{ |*x| b.call(*x).__send__(*msg, *a) }
	  #		else
	  #		  b2 = ::Proc.new{ |x| x.__send__(*msg, *a) }
	  #		end
	  #		this.__send__(m, &b2)
	  #	end
    #end
  end

end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
facets-glimmer-3.2.0 lib/standard/facets/against.rb
facets-3.1.0 lib/standard/facets/against.rb
facets-3.0.0 lib/standard/facets/against.rb