Method: Funkr::Categories::Applicative::ClassMethods#lift_with

Defined in:
lib/funkr/categories/applicative.rb

#lift_with(*args, &block) ⇒ Object

Lift the block and call parameters on it.



32
33
34
# File 'lib/funkr/categories/applicative.rb', line 32

def lift_with(*args, &block)
  full_lift_proc(&block).call(*args)
end