let rec find_aux i p ra = if i > ra.vlix then raise Not_found else let el = unsafe_get ra i in if p el then el else find_aux (i + 1) p ra