(service: Context.Key<I, S>)
| 410 | * @since 4.0.0 |
| 411 | */ |
| 412 | export const serviceOption = <I, S>(service: Context.Key<I, S>): Stream<Option.Option<S>> => |
| 413 | fromEffect(Effect.serviceOption(service)) |
| 414 | |
| 415 | /** |
| 416 | * Creates a stream that runs the effect and emits no elements. |
nothing calls this directly
no test coverage detected