F# Pattern Matching [Technical Blog]
Posted: 19 Dec 2011
Updated: 19 Dec 2011
Views: 6,156
Rating: 0.0 / 5
Votes: 0
Popularity: 0.0
Licence: The Code Project Open License (CPOL)
Bookmarked: 1
Downloaded: 0
Pattern matching is logically similar to a switch statement in C#, Java, C++, etc; but itz much more powerful. A pattern match is a series of rules that will execute if the pattern matches the input. The pattern match expression then returns the result of the rule that was matched. So, all rules