/** * @tsplus static effect/core/stream/Channel.Aspects zipParLeft * @tsplus pipeable effect/core/stream/Channel zipParLeft */ export function zipParLeft( that: Channel ) { return ( self: Channel ): Channel< Env1 | Env, InErr & InErr1, InElem & InElem1, InDone & InDone1, OutErr | OutErr1, OutElem | OutElem1, OutDone > => self.zipPar(that).map((tuple) => tuple[0]) }