// ets_tracing: off import type * as C from "./core.js" import * as ZipWithPar from "./zipWithPar.js" /** * Like `zipPar`, but keeps only the result from `that` sink. */ export function zipParRight_< 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, (_, c) => c) } /** * Like `zipPar`, but keeps only the result from `that` sink. * * @ets_data_first zipParRight_ */ export function zipParRight( that: C.Sink ) { return (self: C.Sink) => zipParRight_(self, that) }