Handbook
Glossary
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
obj1
an
object
obj2
an
object
obj3
an
object
quot
a
callable
Outputs
curried
a
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
IN:
kernel
:
3curry
( obj1 obj2 obj3 quot -- curried )
curry
curry
curry
;
inline