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: | List |
---|---|
Function: | nub |
Type: | Eq a => [a] -> [a] |
Description: | nub (meaning "essence") removes duplicates elements from a list. |
Related: | group, groupBy, inits, intersperse, mapAccumL, mapAccumR, nubBy, partition, sort, sortBy, tails, transpose |
Input: nub [0,1,2,3,2,1,0]
Output: [0,1,2,3]
Input: nub "AAAAAAAAAAAABBBBBBBBBBBBBBCCCCC"
Output: "ABC"