Creates a new parallel combinator that merging two computations C1 and C2.
C1
C2
+------+ A1 S --------------+----->| |--------------+ | T1 | C1 | | +------|------| |<------+ V | | +------+ | [ joinA ]--> A V | | ^ T <--[ joinT ] | +------+ A2 | | ^ |----->| |-------|------+ | T2 | C2 | | +-------------| |<------+-------------- B +------+ Copy
+------+ A1 S --------------+----->| |--------------+ | T1 | C1 | | +------|------| |<------+ V | | +------+ | [ joinA ]--> A V | | ^ T <--[ joinT ] | +------+ A2 | | ^ |----->| |-------|------+ | T2 | C2 | | +-------------| |<------+-------------- B +------+
Creates a new parallel combinator that merging two computations
C1andC2.