/** * A schedule that recurs for until the predicate evaluates to true. * * @tsplus static effect/core/io/Schedule.Ops recurUntil */ export function recurUntil( f: Predicate ): Schedule { return Schedule.identity().untilInput(f) }