(f: Predicate<A>)
| 1202 | |
| 1203 | /** @internal */ |
| 1204 | export const recurUntil = <A>(f: Predicate<A>): Schedule.Schedule<A, A> => untilInput(identity<A>(), f) |
| 1205 | |
| 1206 | /** @internal */ |
| 1207 | export const recurUntilEffect = <A, R>( |
no test coverage detected
searching dependent graphs…