Active Pattern
Last week I was pointed by someone to Active Patterns in F#. And it has been quite an interesting discovery.
Active Patterns are used on F# to partition data. Those partitions then can be used with pattern matching. Microsoft’s webpage compares them to discriminated unions.
How they can be used? Well, you could look at the above link, or just follow this post (or, in fact, do both).
Below is an initial version of a trivial function using pattern matching.
A first improvement of the above code would be to put the logic on the guards behind functions, so we can arrive to this:
But what if we could remove the guard clauses completely? That is where Active Patterns come into play.
As you can see there are a few differences on the code. If we concentrate on the logic functions, we can see that now the name of the function has been changed for the construct (| | |)
, and that now is it returning an Option type. Then, the pattern matching has replaced the x when ...
code with the new Pattern Zero(x)
. We complicate a bit the functions, we simplify the pattern matching.
If we look at what is the answer that we are providing, we realize that we are not using the number at all, so in fact we could change the line
for
The x
is not the data that we pass to the Pattern, is the data that is returned! We pass the data implicilty. But wait, if I don’t use the return data, do I need to return it at all? And the answer is no. So now we replace
with
We return the name of the pattern, instead of the data.
Which now means that on the match we can do the change from
to
So far we have returned the same data that we have passed, and not returned anything. But what if we want to return data of a different type? That is possible: Look below that (|Positive|_|)
returns a string now.
So far I have been using Partial Patterns. That is, the data could not be defined as a partition. That is why there is an underscore ((|Zero|_|) ) and why we are returning an Option (Some |
None). But we could have a full Active Pattern, where the data must be inside one of the partitions. The changes are easy just as below) |
to
Patterns can be combined using &
for the and combination, and |
for the or combination.
So instead of
we could write
Not that in this case makes any difference, but is a posibility.
Finally, we could make single big pattern, replacing
with
Which in this case looks a bit pointless to me, as I’m nearly back to the original code. It will have it’s uses, though.
Active Patterns are an intersting construct, especially when using the Active Pattern multiple times.