Handbook
Glossary
quad@ ( w x y z quot -- )
Extra combinators
Prev:
4quad* ( g h i j k l m n o t u v w x y z p q r s -- )
Next:
2quad@ ( s t u v w x y z quot -- )
Vocabulary
combinators
.
extras
Inputs
w
an
object
x
an
object
y
an
object
z
an
object
quot
a
quotation
with stack effect
( obj -- ... )
Outputs
None
Word description
Applies the quotation to
w
, then to
x
, then to
y
, and finally to
z
.
Definition
USING:
kernel
;
IN:
combinators.extras
:
quad@
( w x y z quot -- )
dup
dup
dup
quad*
;
inline