CurryInfo: base-3.4.0 / Data.List.unfoldr

definition: Info
 
unfoldr :: (b -> Maybe (a, b)) -> b -> [a]
unfoldr f b  = case f b of
  Just (a, new_b) -> a : unfoldr f new_b
  Nothing         -> []
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Builds a list from a seed value.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> {:,[]}}
name: Info
 unfoldr
precedence: Info
 no precedence defined
result-values: Info
 {:,[]}
signature: Info
 (a -> Prelude.Maybe (b, a)) -> a -> [b]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms