import { TerminationStrategy } from "@effect/core/stream/Stream//TerminationStrategy" /** * Merges this stream and the specified stream together. New produced stream * will terminate when this stream terminates. * * @tsplus static effect/core/stream/Stream.Aspects mergeTerminateLeft * @tsplus pipeable effect/core/stream/Stream mergeTerminateLeft */ export function mergeTerminateLeft(that: Stream) { return (self: Stream): Stream => self.merge(that, TerminationStrategy.Left) }