( f: (a: A) => Effect.Effect<boolean, never, R> )
| 390 | |
| 391 | /** @internal */ |
| 392 | export const collectUntilEffect = <A, R>( |
| 393 | f: (a: A) => Effect.Effect<boolean, never, R> |
| 394 | ): Schedule.Schedule<Chunk.Chunk<A>, A, R> => collectAllOutputs(recurUntilEffect(f)) |
| 395 | |
| 396 | /** @internal */ |
| 397 | export const collectWhile = <A>(f: Predicate<A>): Schedule.Schedule<Chunk.Chunk<A>, A> => |
nothing calls this directly
no test coverage detected
searching dependent graphs…