// ets_tracing: off import * as CH from "../Channel/index.js" import * as C from "./core.js" /** * A sink that immediately ends with the specified value. */ export function succeed(z: Z): C.Sink { return new C.Sink(CH.succeed(z)) }