vote up 18 vote down star
9

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.

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

#light
let ListProduct l = List.fold_left (*) 1 l

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

using System;
using System.Collections.Generic;
using System.Linq;

...

public static class ListHelper {
  public static int ListProduct(List<int> l) {
    return l.Aggregate(1, (i, j) => i * j);
  }
}

Before LINQ that would have been:-

using System;
using System.Collections.Generic;

...

public static class ListHelper {
  public static int ListProduct(List<int> l) {
    int ret = 1;
    foreach (int i in l) ret *= i;
    return ret;
  }
}

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?

flag

49% accept rate

5 Answers

vote up 8 vote down check

My favorite is recursively listing all files under a folder in a four-line sequence expression:

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
        }
link|flag
Albeit cute there's actually a straigforward way to achive this using "Directory.GetFiles(basePath, "*", SearchOption.AllDirectories)" see msdn.microsoft.com/en-us/library/… – Torbjörn Gyllebring Sep 30 '08 at 13:08
4  
First comment is NOT true - the function that is proposed in this answer is lazy - so it won't oblige you to scan the whole of your basePath before returning the first result. – Benjol Dec 9 '08 at 11:09
vote up 3 vote down

I think the elegant thing about folding is that you can 'feed' it anything:

//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 |> List.map cube
    |> List.fold_left limits (0, 0)
    |> range
link|flag
vote up 3 vote down

For F# elegance, check out Dustin's YAPES series: http://diditwith.net/2008/04/24/YetAnotherProjectEulerSeriesYAPES.aspx

link|flag
vote up 1 vote down
let htmls = [ "<crap>foo</crap>"; "<crap>bar</crap>"]

let remove pat (x:string) = x.Replace(pat,"") 

let removecrap = [ remove "<crap>"; remove "</crap>" ]

removecrap is a list of functions that take a string and return a string

let rec mapf (lf: ('a->'a) list) (li: 'a list) = 
   match lf with
   | [] -> li
   | hd::tl -> mapf tl (List.map hd li)

let result = mapf removecrap htmls

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.

link|flag
Perhaps, a more standard F# way is function composition (>>). This way, you just map once. let removecrap = remove "<crap>" >> remove "</crap>" let result = map removecrap htmls – namin Nov 12 '08 at 0:03
vote up 2 vote down

F# is a functional programming language and therefore is great with lists and recursion.

The code below, is a slight modification to part of the default tutorial F# Project included with the F# download package. It is nothing special but demonstrates the same code as you put above for those that are wondering.

let rec ListProduct xs =
    match xs with
    //If xs is an empty list, we have a match with an empty list.  Return 1
    | []    -> 1
    //Otherwise match with an item + the rest of the list.  
    //Return the first item * the rest of the list. 
    | y::ys -> y * ListProduct ys

This code is obviously not meant to give any wow factor as you mentioned. But you can see some really cool uses of F# on this site. Check out the sudoku solver in F#. Compare this code to a C# implementation of a Sudoku solver. The site also demonstrates how to easily code a GUI with F#.

This site will show you how to integrate F# with ASP .Net

link|flag

Your Answer

Get an OpenID
or

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