import { zipLeftChunks } from "@effect/core/stream/Stream/operations/_internal/zipLeftChunks" /** * 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. * * @tsplus static effect/core/stream/Stream.Aspects zipLeft * @tsplus pipeable effect/core/stream/Stream zipLeft */ export function zipLeft(that: Stream) { return (self: Stream): Stream => self.zipWithChunks(that, zipLeftChunks) }