CurryInfo: base-3.4.0 / Data.List.init

definition: Info
 
init :: [a] -> [a]
init [_]          = []
init (x:xs@(_:_)) = x : init xs
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Returns the input list with the last element removed.
failfree: Info
 {:}
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({:}) |-> {:,[]}}
name: Info
 init
precedence: Info
 no precedence defined
result-values: Info
 {:,[]}
signature: Info
 [a] -> [a]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 possibly non-reducible on same data term