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: | filter |
Type: | (a -> Bool) -> [a] -> [a] |
Description: | returns a list constructed from members of a list (the second argument) fulfilling a condition given by the first argument |
Related: | |
Keywords: | list construction |
Input: filter (>5) [1,2,3,4,5,6,7,8]
Output: [6,7,8]
Input: filter odd [3,6,7,9,12,14]
Output: [3,7,9]
Input: filter (\x -> length x > 4) ["aaaa","bbbbbbbbbbbbb","cc"]
Output: ["bbbbbbbbbbbbb"]