definition: |
iterate :: (a -> a) -> a -> [a] iterate f x = x : iterate f (f x) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Infinite list of repeated applications of a function f to an element x. --- Thus, `iterate f x = [x, f x, f (f x), ...]`. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> {:}} |
name: |
iterate |
precedence: |
no precedence defined |
result-values: |
{:} |
signature: |
(a -> a) -> a -> [a] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |