definition: |
drop :: Int -> [a] -> [a] drop n xs = if n <= 0 then xs else case xs of [] -> [] (_:ys) -> drop (n - 1) ys |
demand: |
argument 2 |
deterministic: |
deterministic operation |
documentation: |
--- Returns suffix without first n elements. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _ || (_,{[]}) |-> {[]} || (_,{:}) |-> _} |
name: |
drop |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Int -> [a] -> [a] |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |