Haskell list difference operator in F# - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T22:01:56Zhttp://stackoverflow.com/feeds/question/59711http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/59711/haskell-list-difference-operator-in-f5Haskell list difference operator in F#fryguybob2008-09-12T18:31:39Z2009-05-06T02:29:13Z
<p>Is there an equivalent operator to Haskell's list difference operator <code>\\</code> in F#?</p>
http://stackoverflow.com/questions/59711/haskell-list-difference-operator-in-f/59814#598143Answer by nlucaroni for Haskell list difference operator in F#nlucaroni2008-09-12T19:41:25Z2008-09-12T19:41:25Z<p>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 <a href="http://research.microsoft.com/fsharp/manual/spec2.aspx#_Toc207785578" rel="nofollow">manual</a>:</p>
<blockquote>
<p>infix-op :=</p>
<pre><code>or || & && <OP >OP $OP = |OP &OP ^OP :: -OP +OP *OP /OP %OP
**OP
</code></pre>
<p>prefix-op :=</p>
<pre><code>!OP ?OP ~OP -OP +OP % %% & &&
</code></pre>
</blockquote>
http://stackoverflow.com/questions/59711/haskell-list-difference-operator-in-f/827771#8277711Answer by Jon Harrop for Haskell list difference operator in F#Jon Harrop2009-05-06T02:29:13Z2009-05-06T02:29:13Z<p>Just convert the lists to sets using the built-in <code>set</code> function and then use the built-in <code>-</code> operator:</p>
<pre><code>set xs - set ys
</code></pre>
<p>For example:</p>
<pre><code>> set [1..5] - set [2..4];;
val it : Set<int> = seq [1; 5]
</code></pre>