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
Seq.exists
let testseq = seq [ 1; 2; 3; 4 ] let equalsTwo n = (n = 2) let containsTwo = Seq.exists equalsTwo testseq