@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
18 lines (16 loc) • 414 B
JavaScript
import * as ZipWith from "./zipWith.mjs";
/**
* Like `zip`, but keeps only the result from this sink.
*/
export function zipRight_(self, that) {
return ZipWith.zipWith_(self, that, (_, z1) => z1);
}
/**
* Like `zip`, but keeps only the result from this sink.
*
* @ets_data_first zipRight_
*/
export function zipRight(that) {
return self => zipRight_(self, that);
}
//# sourceMappingURL=zipRight.mjs.map