ZVON > References > Haskell reference
| Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random

Module: Prelude
Function: drop
Type: Int -> [a] -> [a]
Description:
Related: dropWhile, head, init, last, tail

Example 1

Input: drop 5 [1,2,3,4,5,6,7,8,9,10]

Output: [6,7,8,9,10]