()
| 2459 | |
| 2460 | /** @internal */ |
| 2461 | export const context = <R>(): Stream.Stream<Context.Context<R>, never, R> => fromEffect(Effect.context<R>()) |
| 2462 | |
| 2463 | /** @internal */ |
| 2464 | export const contextWith = <R, A>(f: (env: Context.Context<R>) => A): Stream.Stream<A, never, R> => |
no test coverage detected
searching dependent graphs…