CurryInfo: base-3.4.0 / Prelude.iterate

definition: Info
 
iterate :: (a -> a) -> a -> [a]
iterate f x = x : iterate f (f x)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Infinite list of repeated applications of a function f to an element x.
Thus, `iterate f x = [x, f x, f (f x), ...]`.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> {:}}
name: Info
 iterate
precedence: Info
 no precedence defined
result-values: Info
 {:}
signature: Info
 (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