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