Instant is
off
|
Search plugin
|
Manual
|
haskell.org
iterate
+base
Packages
base
iterate
:: (a -> a) -> a -> [a]
base
Prelude
,
base
Data.List
iterate
f x returns an infinite list of repeated applications of f to x: > iterate f x == [x, f x, f (f x), ...]
©
Neil Mitchell
2004-2012, version 4.2.11