( iterable: Effect.Effect<Iterable<A>, E, R> )
| 1019 | * @since 4.0.0 |
| 1020 | */ |
| 1021 | export const fromIterableEffectRepeat = <A, E, R>( |
| 1022 | iterable: Effect.Effect<Iterable<A>, E, R> |
| 1023 | ): Stream<A, Pull.ExcludeDone<E>, R> => flatMap(fromEffectRepeat(iterable), fromIterable) |
| 1024 | |
| 1025 | /** |
| 1026 | * Creates a stream from an array of values. |
nothing calls this directly
no test coverage detected