(service: Context.Key<I, S>)
| 368 | * @since 4.0.0 |
| 369 | */ |
| 370 | export const service = <I, S>(service: Context.Key<I, S>): Stream<S, never, I> => fromEffect(Effect.service(service)) |
| 371 | |
| 372 | /** |
| 373 | * Optionally accesses a service from the context and emits the result as a |
nothing calls this directly
no test coverage detected