/** * Accesses the environment of the channel. * * @tsplus static effect/core/stream/Channel.Ops environmentWith */ export function environmentWith( f: (env: Env) => OutDone ): Channel { return Channel.environment().map(f) }