ยค serCompF, >==<

Plumbing: serial composition

Types

serCompF :: F a1 b -> F a2 a1 -> F a2 b
>==< :: F a1 b -> F a2 a1 -> F a2 b

Synopsis

serCompF fl fr

Description

serCompF connects the output of one fudget to the input of another fudget, and can be seen as ordinary function composition adapted for fudgets.

>==< is an infix version of serCompF.

Input

Any input is passed to the right fudget.

Output

Any output comes from the left fudget.

Arguments

fl :: F a1 b
left fudget
fr :: F a2 a1
right fudget

See Also

Pre- and postprocessor combinators: >=^<, >^=<.

Parallel composition: >+<.

The corresponding stream processor combinator: serCompSP.