(effect: Effect.Effect<A, E, R>)
| 336 | * @since 2.0.0 |
| 337 | */ |
| 338 | export const fromEffect = <A, E, R>(effect: Effect.Effect<A, E, R>): Stream<A, E, R> => |
| 339 | fromChannel(Channel.fromEffect(Effect.map(effect, Arr.of))) |
| 340 | |
| 341 | /** |
| 342 | * Accesses a service from the context and emits it as a single element. |
no test coverage detected