arrow-fx-coroutines / arrow.fx.coroutines / Schedule / untilOutput
fun untilOutput(f: suspend (Output) -> Boolean): Schedule<Input, Output>
fun untilOutput(f: suspend (Output) ->
Boolean
):
Schedule
<Input, Output>
untilOutput(f) = whileOutput(f).not()
Do you like Arrow?