/** * Parallelly zips the this result with the specified result discarding the * second element of the tuple or else returns the failed `Cause`. * * @tsplus static effect/core/io/Exit.Aspects zipParLeft * @tsplus pipeable effect/core/io/Exit zipParLeft */ export function zipParLeft(that: Exit) { return (self: Exit): Exit => self.zipWith( that, (a, _) => a, Cause.both ) }