CurryInfo: base-3.4.0 / Data.List.last

definition: Info
 
last :: [a] -> a
last [x]            = x
last (_ : xs@(_:_)) = last xs
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Returns the last element of a non-empty list.
failfree: Info
 {:}
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({:}) |-> _}
name: Info
 last
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