import { TerminationStrategy } from "@effect/core/stream/Stream//TerminationStrategy" /** * Merges this stream and the specified stream together, discarding the values * from the left stream. * * @tsplus static effect/core/stream/Stream.Aspects mergeRight * @tsplus pipeable effect/core/stream/Stream mergeRight */ export function mergeRight( that: Stream, strategy: TerminationStrategy = TerminationStrategy.Both ) { return (self: Stream): Stream => self.drain.merge(that, strategy) }