/** * Accesses the environment of the transaction to perform a transaction. * * @tsplus static effect/core/stm/STM.Ops environmentWithSTM */ export function environmentWithSTM( f: (env: Env) => STM ): STM { return STM.environment().flatMap(f) }