Can an F# query expression filter for items that are NOT in a sub-query?
I have the following sample that finds the numbers in s1 that are not in s2. let s1 = seq { 1..3 } let s2 = seq { 3..4 } s1 |> Seq.filter (fun x -> s2 |> Seq.forall (fun y -> x <> y)) |> Seq.iter (fun x -> printfn $"{x}") This prints 1… Read More Can an F# query expression filter for items that are NOT in a sub-query?