find_index
function
l
find_index(P, L) returns the index of the first
element L that begins with an element satisfying P.
l
Example:
l
find_index(odd, [2, 4, 6, 7, 9, 10, 12])
==>
3
l
Indices start with 0 as for the first element of
the list.
l