how to check if an element is contained within a sequence? I expected some Seq.contains, but i could not find it. Thanks
EDIT: Or, for an easier tas
Little bit simpler:
let contains x = Seq.exists ((=) x)