MCPcopy Create free account
hub / github.com/Effect-TS/effect / fromIterableEffectRepeat

Function fromIterableEffectRepeat

packages/effect/src/Stream.ts:1021–1023  ·  view source on GitHub ↗
(
  iterable: Effect.Effect<Iterable<A>, E, R>
)

Source from the content-addressed store, hash-verified

1019 * @since 4.0.0
1020 */
1021export 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.

Callers

nothing calls this directly

Calls 1

fromEffectRepeatFunction · 0.85

Tested by

no test coverage detected