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: | delete |
Type: | Eq a => a -> [a] -> [a] |
Description: | removes the first occurrence of the specified element from its list argument |
Related: | (\\), deleteBy, intersect, intersectBy, union, unionBy |
Input: delete 2 [1,2,3,2,1]
Output: [1,3,2,1]
Input: delete 20 [1,2,3,2,1]
Output: [1,2,3,2,1]
Input: delete 'a' "abba"
Output: "bba"