Handbook
Glossary
tri-curry@ ( x y z q -- p' q' r' )
Factor handbook
»
The language
»
Combinators
»
Compositional combinators
»
Curried dataflow combinators
Prev:
bi-curry@ ( x y q -- p' q' )
Vocabulary
kernel
Inputs
x
an
object
y
an
object
z
an
object
q
a
quotation
with stack effect
( obj -- ... )
Outputs
p'
[ x q ]
q'
[ y q ]
r'
[ z q ]
Word description
Partially applies
q
to
x
,
y
and
z
.
Notes
The following two lines are equivalent:
[ q ] tri-curry@ [ q ] [ q ] [ q ] tri-curry*
Definition
USING:
kernel.private
;
IN:
kernel
:
tri-curry@
( x y z q -- p' q' r' )
currier
tri@
;
inline