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