Haskell list difference operator in F# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T22:01:56Z http://stackoverflow.com/feeds/question/59711 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/59711/haskell-list-difference-operator-in-f 5 Haskell list difference operator in F# fryguybob 2008-09-12T18:31:39Z 2009-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#59814 3 Answer by nlucaroni for Haskell list difference operator in F# nlucaroni 2008-09-12T19:41:25Z 2008-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 || &amp; &amp;&amp; &lt;OP &gt;OP $OP = |OP &amp;OP ^OP :: -OP +OP *OP /OP %OP **OP </code></pre> <p>prefix-op :=</p> <pre><code>!OP ?OP ~OP -OP +OP % %% &amp; &amp;&amp; </code></pre> </blockquote> http://stackoverflow.com/questions/59711/haskell-list-difference-operator-in-f/827771#827771 1 Answer by Jon Harrop for Haskell list difference operator in F# Jon Harrop 2009-05-06T02:29:13Z 2009-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>&gt; set [1..5] - set [2..4];; val it : Set&lt;int&gt; = seq [1; 5] </code></pre>