let rec mem_aux i x ra = if i > ra.vlix then false else if unsafe_get ra i = x then true else mem_aux (i + 1) x ra