For an inline function one could create a constraint like:
let inline implicit arg =
( ^a : (static member op_Implicit : ^b -> ^a) arg)
requiring the given operator or member on the arguments. Is there a way to match based on somthing similar?
I want to create an active pattern where any argument that’s passed to the method that matches the constraint of an inlined function as the above triggers that function and everything else ends as part of some error management.
It looks like you can write inline active patterns too. I haven’t used this before, but I tried it now and it seems to work just fine. The
Testpattern below can be used with any object that implementsTestmethod that returnsoption< ^R >:Now you can define some objects that define
Testmethod and match them using the pattern:This looks like a very interesting technique, because pattern matching is now a part of the object.