CurryInfo: base-3.4.0 / Prelude.foldl

definition: Info
 
foldl :: (a -> b -> a) -> a -> [b] -> a
foldl _ z []     = z
foldl f z (x:xs) = foldl f (f z x) xs
demand: Info
 argument 3
deterministic: Info
 deterministic operation
documentation: Info
 
Accumulates all list elements by applying a binary operator from
left to right.
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,{[]}) |-> _ || (_,_,{:}) |-> _}
name: Info
 foldl
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (a -> b -> a) -> a -> [b] -> a
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms