(f: Predicate<A>)
| 386 | |
| 387 | /** @internal */ |
| 388 | export const collectUntil = <A>(f: Predicate<A>): Schedule.Schedule<Chunk.Chunk<A>, A> => |
| 389 | collectAllOutputs(recurUntil(f)) |
| 390 | |
| 391 | /** @internal */ |
| 392 | export const collectUntilEffect = <A, R>( |
nothing calls this directly
no test coverage detected
searching dependent graphs…