Handbook
Glossary
quad-curry@ ( w x y z q -- p' q' r' s' )
Extra combinators
Prev:
quad-curry* ( w x y z p q r s -- p' q' r' s' )
Next:
keep-1up ( quot -- quot )
Vocabulary
combinators
.
extras
Inputs
w
an
object
x
an
object
y
an
object
z
an
object
q
a
quotation
with stack effect
( x -- ... )
Outputs
p'
[ w q ]
q'
[ x q ]
r'
[ y q ]
s'
[ z q ]
Word description
Partially applies
q
to
w
,
x
,
y
and
z
.
Definition
USING:
kernel.private
;
IN:
combinators.extras
:
quad-curry@
( w x y z q -- p' q' r' s' )
currier
quad@
;
inline