quad ( x p q r s -- ) - Factor Documentation

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



Vocabulary
combinators .extras

Inputs
x an object
p a quotation with stack effect ( x -- ... )
q a quotation with stack effect ( x -- ... )
r a quotation with stack effect ( x -- ... )
s a quotation with stack effect ( x -- ... )


Outputs
None

Word description
Applies p to x, then applies q to x, then applies r to x, and finally applies s to x.

Definition
USING: kernel ;

IN: combinators.extras

: quad ( x p q r s -- )
[ [ [ keep ] dip keep ] dip keep ] dip call ; inline

AltStyle によって変換されたページ (->オリジナル) /