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
xan object
yan object
zan object
qa 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