CurryInfo: base-3.4.0 / Prelude.foldr1

definition: Info
 
foldr1 :: (a -> a -> a) -> [a] -> a
foldr1 _ [x]          = x
foldr1 f (x:xs@(_:_)) = f x (foldr1 f xs)
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
Accumulates a non-empty list from right to left:
failfree: Info
 (_, {:})
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{:}) |-> _}
name: Info
 foldr1
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (a -> a -> a) -> [a] -> a
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 possibly non-reducible on same data term