Curried dataflow combinators - Factor Documentation (original) (raw)

Curried dataflow combinators
Factor handbook » The language » Combinators » Compositional combinators

Prev: prepose ( quot1 quot2 -- composed )

Curried cleave combinators:
bi-curry ( x p q -- p' q' )
tri-curry ( x p q r -- p' q' r' )

Curried spread combinators:

bi-curry* ( x y p q -- p' q' )

tri-curry* ( x y z p q r -- p' q' r' )

Curried apply combinators:

bi-curry@ ( x y q -- p' q' )

tri-curry@ ( x y z q -- p' q' r' )

See also
Dataflow combinators