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

Function recurUntilEffect

packages/effect/src/internal/schedule.ts:1207–1209  ·  view source on GitHub ↗
(
  f: (a: A) => Effect.Effect<boolean, never, R>
)

Source from the content-addressed store, hash-verified

1205
1206/** @internal */
1207export const recurUntilEffect = <A, R>(
1208 f: (a: A) => Effect.Effect<boolean, never, R>
1209): Schedule.Schedule<A, A, R> => untilInputEffect(identity<A>(), f)
1210
1211/** @internal */
1212export const recurUntilOption = <A, B>(pf: (a: A) => Option.Option<B>): Schedule.Schedule<Option.Option<B>, A> =>

Callers 1

collectUntilEffectFunction · 0.85

Calls 1

identityFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…