 
ยค parSP, -*-
Types
parSP :: SP a b -> SP a b -> SP a b
-*- :: SP a b -> SP a b -> SP a b
Synopsis
parSP sp1 sp2
Synposis
 Stream processor combinators
Description
parSP is untagged parallel composition of stream processors.
 
Arguments
- sp1 :: SP a b
-  a stream processor
- sp2 :: SP a b
-  a stream processor
 
Input
	Input to the composition is propagated to both argument
	stream processors.
Output
 Output from the two stream processors is merged without any tagging.
See Also
Tagged parallel composition of stream processors: compEitherSP.
The corresponding fudget combinator: >*<.
