So what I have this list of ints, let's say it is
let a = [14, 22, 47] in
And what I want to do is check if some other identifier is equal to ANY of the elements in the list. I could obviously do:
if (x = 14 || x = 22 || x = 47) then do something
but this seems cumbersome for bigger lists. Is there an easier way in OCaml? I know Python has the "in" operator.