Handbook
Glossary
4bi@ ( s t u v w x y z quot -- )
Extra combinators
Prev:
3bi@ ( u v w x y z quot -- )
Next:
4tri ( w x y z p q r -- )
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 obj 2 obj3 obj4 -- ... )
Outputs
None
Word description
Applies the quotation to
s
,
t
,
u
and
v
, and then to
w
,
x
,
y
and
z
.
Definition
USING:
kernel
;
IN:
combinators.extras
:
4bi@
( s t u v w x y z quot -- )
dup
4bi*
;
inline