quad-curry* ( w x y z p q r s -- p' q' r' s' )
Extra combinators

Prev:quad-curry ( x p q r s -- p' q' r' s' )
Next:quad-curry@ ( w x y z q -- p' q' r' s' )


Vocabulary
combinators.extras

Inputs
wan object
xan object
yan object
zan object
pa quotation with stack effect ( x -- ... )
qa quotation with stack effect ( x -- ... )
ra quotation with stack effect ( x -- ... )
sa quotation with stack effect ( x -- ... )


Outputs
p'[ w p ]
q'[ x q ]
r'[ y r ]
s'[ z s ]


Word description
Partially applies p to w, q to x, r to y, and s to z.

Definition