serCompSP :: SP a1 b -> SP a2 a1 -> SP a2 b -==- :: SP a1 b -> SP a2 a1 -> SP a2 b
serCompSP sp1 sp2
serCompSP
connects the output of one stream processor
to the input of another stream processor, and can be seen as ordinary function
composition adapted for stream processors.
sp1 :: SP a1 b
sp2 :: SP a2 a1
The corresponding fudget combinator: >==<.