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