Factor Documentation
|
Home
|
Glossary
|
Search
factorcode.org
prepose ( quot1 quot2 -- compose )
Factor documentation
>
Factor handbook
>
The language
>
Combinators
>
Compositional combinators
Prev:
with ( param obj quot -- obj curry )
Next:
Curried dataflow combinators
Vocabulary
kernel
Inputs and outputs
quot1
a
callable
quot2
a
callable
compose
a
compose
Word description
Quotation composition. Outputs a
callable
which calls
quot2
followed by
quot1
.
Notes
See
compose
for details.
See also
compose
Definition
IN:
kernel
:
prepose
( quot1 quot2 -- compose )
swap
compose
;
inline