// ets_tracing: off import type * as C from "../core.js" import * as ConcatAll from "./concatAll.js" import * as MapOut from "./mapOut.js" /** * Returns a new channel, which is the concatenation of all the channels that are written out by * this channel. This method may only be called on channels that output other channels. */ export function concatOut( self: C.Channel< Env, InErr, InElem, InDone, OutErr, C.Channel, OutDone > ): C.Channel { return ConcatAll.concatAll(MapOut.mapOut_(self, (out) => out)) }