(effect: Effect.Effect<Chunk.Chunk<A>, E, R>)
| 5215 | |
| 5216 | /** @internal */ |
| 5217 | export const repeatEffectChunk = <A, E, R>(effect: Effect.Effect<Chunk.Chunk<A>, E, R>): Stream.Stream<A, E, R> => |
| 5218 | repeatEffectChunkOption(pipe(effect, Effect.mapError(Option.some))) |
| 5219 | |
| 5220 | /** @internal */ |
| 5221 | export const repeatEffectChunkOption = <A, E, R>( |
nothing calls this directly
no test coverage detected
searching dependent graphs…