Elegant Snippets of F# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:34:44Z http://stackoverflow.com/feeds/question/35940 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/35940/elegant-snippets-of-f 18 Elegant Snippets of F# kronoz 2008-08-30T12:53:58Z 2008-11-10T08:10:48Z <p>I'm currently learning F# quite intensively. I really love it as a language, it just sort of 'feels' right and seems to allow you to produce some succint elegant code.</p> <p>I'm interested in finding some really nice 'wow factor' snippets of F# code which demonstate the elegence of the language, especially compared to C#. For example I really like:-</p> <pre> #light let ListProduct l = List.fold_left (*) 1 l </pre> <p>Which inputs a list of ints and multiplies each element in the list, i.e. obtains the product of the list (e.g. a list of 1,2,3 would be calculated as 1*2*3=6). The closest C# equivilent, using LINQ and functional concepts as as follows:-</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; ... public static class ListHelper { public static int ListProduct(List&lt;int&gt; l) { return l.Aggregate(1, (i, j) =&gt; i * j); } } </code></pre> <p>Before LINQ that would have been:-</p> <pre><code>using System; using System.Collections.Generic; ... public static class ListHelper { public static int ListProduct(List&lt;int&gt; l) { int ret = 1; foreach (int i in l) ret *= i; return ret; } } </code></pre> <p>I'm certainly not trying to criticise C# here, I think it's a wonderful language, it's just nice to see how F# compares and to see how it can do some things more elegantly - does anyone have anything really nice?</p> http://stackoverflow.com/questions/35940/elegant-snippets-of-f/36379#36379 2 Answer by Brian R. Bondy for Elegant Snippets of F# Brian R. Bondy 2008-08-30T21:51:31Z 2008-08-30T21:51:31Z <p>F# is a functional programming language and therefore is great with lists and recursion. </p> <p>The code below, is a slight modification to part of the default tutorial F# Project <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=61ad6924-93ad-48dc-8c67-60f7e7803d3c&amp;displaylang=en" rel="nofollow">included with the F# download package.</a> It is nothing special but demonstrates the same code as you put above for those that are wondering. </p> <pre><code>let rec ListProduct xs = match xs with //If xs is an empty list, we have a match with an empty list. Return 1 | [] -&gt; 1 //Otherwise match with an item + the rest of the list. //Return the first item * the rest of the list. | y::ys -&gt; y * ListProduct ys </code></pre> <p>This code is obviously not meant to give any wow factor as you mentioned. But you can see some really cool uses of F# <a href="http://www.ffconsultancy.com/dotnet/fsharp/" rel="nofollow">on this site.</a> Check out the sudoku solver in F#. Compare this code to a <a href="http://blogs.msdn.com/brada/articles/Sudoku.aspx" rel="nofollow">C# implementation of a Sudoku solver</a>. The site also demonstrates how to easily code a GUI with F#.</p> <p>This site will show you how to <a href="http://tomasp.net/articles/aspnet-in-fsharp.aspx" rel="nofollow">integrate F# with ASP .Net</a></p> http://stackoverflow.com/questions/35940/elegant-snippets-of-f/37196#37196 8 Answer by Chris Smith for Elegant Snippets of F# Chris Smith 2008-08-31T22:35:44Z 2008-08-31T22:35:44Z <p>My favorite is recursively listing all files under a folder in a four-line sequence expression:</p> <pre><code>open System.IO let rec filesUnderFolder basePath = seq { for file in Directory.GetFiles(basePath) do yield file for subDir in Directory.GetDirectories(basePath) do yield! filesUnderFolder subDir } </code></pre> http://stackoverflow.com/questions/35940/elegant-snippets-of-f/60546#60546 1 Answer by Michiel Borkent for Elegant Snippets of F# Michiel Borkent 2008-09-13T13:44:21Z 2008-09-13T13:49:35Z <pre><code>let htmls = [ "&lt;crap&gt;foo&lt;/crap&gt;"; "&lt;crap&gt;bar&lt;/crap&gt;"] let remove pat (x:string) = x.Replace(pat,"") let removecrap = [ remove "&lt;crap&gt;"; remove "&lt;/crap&gt;" ] </code></pre> <p>removecrap is a list of functions that take a string and return a string</p> <pre><code>let rec mapf (lf: ('a-&gt;'a) list) (li: 'a list) = match lf with | [] -&gt; li | hd::tl -&gt; mapf tl (List.map hd li) let result = mapf removecrap htmls </code></pre> <p>Instead of List.map applying one function to every element in a list, mapf now applies a list of functions to every element in a list. Personally I like this construction a lot, but I wonder if there is a more standard F# way of doing this.</p> http://stackoverflow.com/questions/35940/elegant-snippets-of-f/106057#106057 3 Answer by Brian for Elegant Snippets of F# Brian 2008-09-19T22:10:27Z 2008-09-19T22:10:27Z <p>For F# elegance, check out Dustin's YAPES series: <a href="http://diditwith.net/2008/04/24/YetAnotherProjectEulerSeriesYAPES.aspx" rel="nofollow">http://diditwith.net/2008/04/24/YetAnotherProjectEulerSeriesYAPES.aspx</a></p> http://stackoverflow.com/questions/35940/elegant-snippets-of-f/152972#152972 3 Answer by Benjol for Elegant Snippets of F# Benjol 2008-09-30T13:15:48Z 2008-09-30T13:15:48Z <p>I think the elegant thing about folding is that you can 'feed' it anything:</p> <pre><code>//takes a max/min tuple + new value, returns expanded max/min tuple let limits (mn, mx) a = (min mn a, max mx a) //Initialise a test list let lst = [1; 3; 5; -1; -9; 0] //feeds each value in lst to limits - for first call, uses (0, 0) for (mn,mx) List.fold_left limits (0, 0) lst //(two extra functions for following example) let cube x = x * x * x //does this need explaining? let range (a, b) = b - a //returns range of a tuple //particularly sexy with pipe forward operator lst |&gt; List.map cube |&gt; List.fold_left limits (0, 0) |&gt; range </code></pre>