// ets_tracing: off import type * as C from "./core.js" import * as ZipWithPar from "./zipWithPar.js" /** * Like `zipPar`, but keeps only the result from this sink. */ export function zipParLeft_< R, R1, InErr, InErr1, In, In1, OutErr, OutErr1, L, L1, Z, Z1 >( self: C.Sink, that: C.Sink ): C.Sink { return ZipWithPar.zipWithPar_(self, that, (b, _) => b) } /** * Like `zipPar`, but keeps only the result from this sink. * * @ets_data_first zipParLeft_ */ export function zipParLeft( that: C.Sink ) { return (self: C.Sink) => zipParLeft_(self, that) }