MCPcopy Index your code
hub / github.com/Effect-TS/effect / dropWhileEffect

Function dropWhileEffect

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

Source from the content-addressed store, hash-verified

624
625/** @internal */
626export const dropWhileEffect = <In, E, R>(
627 predicate: (input: In) => Effect.Effect<boolean, E, R>
628): Sink.Sink<unknown, In, In, E, R> => suspend(() => new SinkImpl(dropWhileEffectReader(predicate)))
629
630/** @internal */
631const dropWhileEffectReader = <In, R, E>(

Callers

nothing calls this directly

Calls 2

dropWhileEffectReaderFunction · 0.85
suspendFunction · 0.70

Tested by

no test coverage detected