val find_elt : 'at->f:('a-> bool)->(key * 'a) option
find_elt m ~f linearly traverses the map m and the contained lists to find the first element e (in a list l, mapped to key k) such that f e = true. If such an e is found then the function returns Some (k,e), otherwise it returns None.