up vote 7 down vote favorite
share [g+] share [fb]

Is there an equivalent operator to Haskell's list difference operator \\ in F#?

link|improve this question

78% accept rate
feedback

3 Answers

up vote 1 down vote accepted

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 set function and then use the built-in - operator to compute the set difference:

set xs - set ys

For example:

> set [1..5] - set [2..4];;
val it : Set<int> = seq [1; 5]
link|improve this answer
2  
This won't handle duplicates correctly. – Ganesh Sittampalam Jun 18 '09 at 7:20
The edit still doesn't handle duplicates correctly. The \\ operator doesn't provide a set-difference behaviour, it provides a bag-difference behaviour. – ScottWest Feb 12 '11 at 21:20
@Scott: Thanks. Looks like it probably isn't worth doing a faithful translation. I doubt anyone would ever want that functionality... – Jon Harrop Feb 12 '11 at 22:17
1  
@Jon I imagine it would depend on whether your underlying model is bags or sets. – ScottWest Feb 12 '11 at 22:24
2  
The function is for lists, so there is an order. The fact that it's more specified makes it a refinement of the bag operation. – ScottWest Feb 13 '11 at 11:19
show 5 more comments
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:

infix-op :=

or || & && <OP >OP $OP = |OP &OP ^OP :: -OP +OP *OP /OP %OP

**OP

prefix-op :=

!OP ?OP ~OP -OP +OP % %% & &&
link|improve this answer
2  
"// will work as an infix operator". No it won't. That is a single-line comment in F#. – Jon Harrop Feb 12 '11 at 15:05
feedback

Filter items from the set of the subtrahend:

let ( /-/ ) xs ys =
    let ySet = set ys
    let notInYSet x = not <| Set.contains x ySet
    List.filter notInYSet xs
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.