find
function
l
find(P, L) returns the longest suffix of L
that begins with an element satisfying P.
l
Example:
l
find(odd, [2, 4, 6, 7, 9, 10, 12])
==>
[7, 9, 10, 12]
l
As with map, etc., find is often used with
anonymous functions.
l