(f: Predicate<A>)
| 395 | |
| 396 | /** @internal */ |
| 397 | export const collectWhile = <A>(f: Predicate<A>): Schedule.Schedule<Chunk.Chunk<A>, A> => |
| 398 | collectAllOutputs(recurWhile(f)) |
| 399 | |
| 400 | /** @internal */ |
| 401 | export const collectWhileEffect = <A, R>( |
nothing calls this directly
no test coverage detected