quad-curry ( x p q r s -- p' q' r' s' )
Extra combinators

Prev:4quad@ ( k l m n o p q r s t u v w x y z quot -- )
Next:quad-curry* ( w x y z p q r s -- p' q' r' s' )


Vocabulary
combinators.extras

Inputs
xan 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'[ x p ]
q'[ x q ]
r'[ x r ]
s'[ x s ]


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

Definition