definition: |
tails :: [a] -> [[a]] tails [] = [[]] tails xxs@(_:xs) = xxs : tails xs |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Returns all final segments of a list, starting with the longest. --- Example: `tails [1,2,3] == [[1,2,3],[2,3],[3],[]]` |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({[]}) |-> {:} || ({:}) |-> {:}} |
name: |
tails |
precedence: |
no precedence defined |
result-values: |
{:} |
signature: |
[a] -> [[a]] |
solution-complete: |
operationally complete operation |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |