// ets_tracing: off import * as CH from "../../Channel/index.js" import * as C from "../core.js" /** * Repeats this stream forever. */ export function forever(self: C.Stream): C.Stream { return new C.Stream(CH.repeated(self.channel)) }