UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

16 lines 691 B
import type * as C from "../core.js"; /** * Zips this stream with another point-wise, but keeps only the outputs of this stream. * * The new stream will end when one of the sides ends. */ export declare function zipLeft_<R, R1, E, E1, A, A1>(self: C.Stream<R, E, A>, that: C.Stream<R1, E1, A1>): C.Stream<R1 & R, E | E1, A>; /** * Zips this stream with another point-wise, but keeps only the outputs of this stream. * * The new stream will end when one of the sides ends. * * @ets_data_first zipLeft_ */ export declare function zipLeft<R, R1, E, E1, A, A1>(that: C.Stream<R1, E1, A1>): (self: C.Stream<R, E, A>) => C.Stream<R1 & R, E | E1, A>; //# sourceMappingURL=zipLeft.d.ts.map