Regex match via Active Patterns with Type based value extraction.
5 people like thisPosted: 13 years ago by Nick Palladinos
It seems that you can't pass anonymous functions as parameters to active patterns.
3 people like thisPosted: 13 years ago by Kurt Schelfthout
When passing objects as arguments to F# functions, it is almost certain that a type annotation will be required. This may generate long and noisy code at times, but thankfully we can use active patterns to mitigate this annoyance.
14 people like thisPosted: 12 years ago by Eirik Tsarpalis
Match the first elements of an array an returns tail.
3 people like thisPosted: 10 years ago by thinkbeforecoding
Exemplary convenience wrappers for some of the System.
Posted: 5 years ago by Novox
This active pattern allows you to specify default values for option arguments in the signature of your function, so you can remove unnecessary calls to defaultArg. It also save you having to define a new name for the defaulted value.
21 people like thisPosted: 13 years ago by Kurt Schelfthout
Using FSharpChart control. Just call Charting.Plot() to chart series or collections of series. No need to create forms, etc.
2 people like thisPosted: 12 years ago by Boris Kogan
A few active pattern combinators useful when pattern matching on lists is necessary.
2 people like thisPosted: 11 years ago by Eirik Tsarpalis
Sample code snippet to group the data into buckets
3 people like thisPosted: 9 years ago by Tamizhvendan