prepose ( quot1 quot2 -- composed )
Factor handbook » The language » Combinators » Compositional combinators

Prev:with ( param obj quot -- obj curried )
Next:Curried dataflow combinators


Vocabulary
kernel

Inputs
quot1a callable
quot2a callable


Outputs
composeda composed


Word description
Quotation composition. Outputs a callable which calls quot2 followed by quot1.

Notes
See compose for details.

See also
curry, curried, compose, composed

Definition

: prepose ( quot1 quot2 -- composed ) swap compose ; inline