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