3curry ( obj1 obj2 obj3 quot -- curried )
Factor handbook » The language » Combinators » Compositional combinators

Prev:2curry ( obj1 obj2 quot -- curried )
Next:with ( param obj quot -- obj curried )


Vocabulary
kernel

Inputs
obj1an object
obj2an object
obj3an object
quota callable


Outputs
currieda curried


Word description
Outputs a callable which pushes obj1, obj2 and obj3, and then calls quot.

Notes
This operation is efficient and does not copy the quotation.

Definition

: 3curry ( obj1 obj2 obj3 quot -- curried )
curry curry curry ; inline