vote up 5 vote down star

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

flag

71% accept rate

2 Answers

vote up 1 vote down check

Just convert the lists to sets using the built-in set function and then use the built-in - operator:

set xs - set ys

For example:

> set [1..5] - set [2..4];;
val it : Set<int> = seq [1; 5]
link|flag
This won't handle duplicates correctly. – Ganesh Sittampalam Jun 18 at 7:20
vote up 3 vote down

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|flag

Your Answer

Get an OpenID
or

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