// ets_tracing: off import type * as C from "../core.js" import * as Merge from "./merge.js" /** * Merges this stream and the specified stream together. New produced stream will * terminate when this stream terminates. */ export function mergeTerminateLeft_( self: C.Stream, that: C.Stream ): C.Stream { return Merge.merge_(self, that, "Left") } /** * Merges this stream and the specified stream together. New produced stream will * terminate when this stream terminates. * * @ets_data_first mergeTerminateLeft_ */ export function mergeTerminateLeft(that: C.Stream) { return (self: C.Stream) => mergeTerminateLeft_(self, that) }