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
quot1a callable
quot2a callable
composea 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