Before digging deeper into advanced language-oriented features of F#, I'll need to do a small digression and talk about sequence comprehensions. This is a language construct that allows us to generate sequences, lists and arrays of data in F# and as we will see later it can be generalized to allow solving several related problems. Anyway, let's first look at an example that filters an F# list:> let people = [ ("Joe", 55); ("John", 32); ("Jane",...
Monday, March 2, 2009
Subscribe to:
Posts (Atom)