Is there an equivalent operator to Haskell's list difference operator \\ in F#?
| |||
|
feedback
|
|
Assuming you really want conventional set difference rather than the weird ordered-but-unsorted multiset subtraction that Haskell apparently provides, just convert the lists to sets using the built-in
For example:
| |||||||||||||||||
feedback
|
|
Nope... Just write it and make it an infix operator --using the set of special characters. // will work as an infix operator, for example, but not \\. See the manual:
| |||||
feedback
|
|
Filter items from the set of the subtrahend:
| |||
|
feedback
|