CurryInfo: base-3.4.0 / Data.Function.fix

definition: Info
 
fix :: (a -> a) -> a
fix f = let x = f x in x
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
`fix f` is the least fixed point of the function `f`,
i.e. the least defined `x` such that `f x = x`.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> _}
name: Info
 fix
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (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