CurryInfo: base-3.4.0 / Prelude.foldr

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