MCPcopy
hub / github.com/Effect-TS/effect / dropUntilEffect

Function dropUntilEffect

packages/effect/src/internal/sink.ts:577–579  ·  view source on GitHub ↗
(
  predicate: (input: In) => Effect.Effect<boolean, E, R>
)

Source from the content-addressed store, hash-verified

575
576/** @internal */
577export const dropUntilEffect = <In, E, R>(
578 predicate: (input: In) => Effect.Effect<boolean, E, R>
579): Sink.Sink<unknown, In, In, E, R> => suspend(() => new SinkImpl(dropUntilEffectReader(predicate)))
580
581/** @internal */
582const dropUntilEffectReader = <In, R, E>(

Callers

nothing calls this directly

Calls 2

dropUntilEffectReaderFunction · 0.85
suspendFunction · 0.70

Tested by

no test coverage detected