CurryInfo: base-3.4.0 / Prelude.drop

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