CurryInfo: base-3.4.0 / Prelude.until

definition: Info
 
until :: (a -> Bool) -> (a -> a) -> a -> a
until p f x = if p x then x else until p f (f x)
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Repeats application of a function until a predicate holds.
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> _}
name: Info
 until
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (a -> Bool) -> (a -> a) -> a -> a
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms