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: | find |
Type: | (a -> Bool) -> [a] -> Maybe a |
Description: | Function find returns the first element of a list that satisfies a predicate, or Nothing, if there is no such element. findIndex returns the corresponding index. findIndices returns a list of all such indices. |
Related: | elemIndex, elemIndices, findIndex, findIndices |
Input: find (>3) [0,2,4,6,8]
Output: Just 4
Input: find (==3) [0,2,4,6,8]
Output: Nothing
Input: find even [2,4,6,8]
Output: Just 2
Input: find (\x -> 5**x > 10000) [2,4,6,8]
Output: Just 6.0