CurryInfo: base-3.4.0 / Data.List.scanr1

definition: Info
 
scanr1                :: (a -> a -> a) -> [a] -> [a]
scanr1 _ []           =  []
scanr1 _ [x]          =  [x]
scanr1 f (x:xs@(_:_)) =  f x q : qs
                         where qs@(q:_) = scanr1 f xs
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
`scanr1` is a variant of `scanr` that has no starting value argument.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{[]}) |-> {[]} || (_,{:}) |-> {:}}
name: Info
 scanr1
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