# File lib/core/facets/proc/partial.rb, line 24
  def partial(*args)
    Proc.new do |*spice|
      result = args.collect do |a|
        NA == a ? spice.pop : a
      end
      call(*result)
    end
  end