(segment: string)
| 6355 | >( |
| 6356 | left: Channel<OutElem, OutErr, OutDone, InElem, InErr, InDone, Env>, |
| 6357 | right: Channel<OutElem1, OutErr1, OutDone1, InElem1, InErr1, InDone1, Env1>, |
| 6358 | options?: { |
| 6359 | readonly haltStrategy?: HaltStrategy | undefined |
| 6360 | } | undefined |
| 6361 | ): Channel< |
| 6362 | OutElem | OutElem1, |
| 6363 | OutErr | OutErr1, |
| 6364 | OutDone | OutDone1, |
| 6365 | InElem & InElem1, |
| 6366 | InErr & InErr1, |
| 6367 | InDone & InDone1, |
no test coverage detected
searching dependent graphs…