Handbook
Glossary
3quad ( x y z p q r s -- )
Extra combinators
Prev:
2quad ( x y p q r s -- )
Next:
4quad ( w x y z p q r s -- )
Vocabulary
combinators
.
extras
Inputs
x
an
object
y
an
object
z
an
object
p
a
quotation
with stack effect
( x y z -- ... )
q
a
quotation
with stack effect
( x y z -- ... )
r
a
quotation
with stack effect
( x y z -- ... )
s
a
quotation
with stack effect
( x y z -- ... )
Outputs
None
Word description
Applies
p
to the three input values, then applies
q
to the three input values, then applies
r
to the three input values, and finally applies
s
to the three input values.
Definition
USING:
kernel
;
IN:
combinators.extras
:
3quad
( x y z p q r s -- )
[
[
[
3keep
]
dip
3keep
]
dip
3keep
]
dip
call
;
inline