ZVON > References > Haskell reference |
Intro / Search / ZVON |
| Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random |
Module: | Prelude |
---|---|
Function: | tail |
Type: | [a] -> [a] |
Description: | it accepts a list and returns the list without its first item |
Related: | drop, dropWhile, head, init, last |
Keywords: | list construction |
Input: tail [1,2,3]
Output: [2,3]
Input: tail "Hello"
Output: "ello"