(f: (env: Context.Context<R>) => A)
| 2462 | |
| 2463 | /** @internal */ |
| 2464 | export const contextWith = <R, A>(f: (env: Context.Context<R>) => A): Stream.Stream<A, never, R> => |
| 2465 | pipe(context<R>(), map(f)) |
| 2466 | |
| 2467 | /** @internal */ |
| 2468 | export const contextWithEffect = <R0, A, E, R>( |