CurryInfo: call-analysis-3.2.0 / Analysis.extendListMap

definition: Info
 
extendListMap :: (a -> [b]) -> [a] -> [[b]]
extendListMap _ []     = [[]]
extendListMap f (x:xs) = [ y:ys | y <- f x, ys <- extendListMap f xs]
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
extend list mapping on a list of elements
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{[]}) |-> {:} || (_,{:}) |-> _}
name: Info
 extendListMap
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (a -> [b]) -> [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