CurryInfo: base-3.4.0 / Data.List.scanl1

definition: Info
 
scanl1          :: (a -> a -> a) -> [a] -> [a]
scanl1 _ []     =  []
scanl1 f (x:xs) =  scanl f x xs
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
`scanl1` is a variant of `scanl` that has no starting value argument:
 scanl1 f [x1, x2, ...] == [x1, x1 `f` x2, ...]
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{[]}) |-> {[]} || (_,{:}) |-> {:}}
name: Info
 scanl1
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
 reducible on all ground data terms