Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Active patterns and member constraint

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.

like image 671
Rune FS Avatar asked Sep 03 '11 10:09

Rune FS


1 Answers

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 Test pattern below can be used with any object that implements Test method that returns option< ^R >:

let inline (|Test|_|) (a:^T) : option< ^R > =
  (^T : (member Test : unit -> option< ^R >) a)

Now you can define some objects that define Test method and match them using the pattern:

type A() =
  member x.Test() = Some(10)

match new A() with
| Test(n) -> printfn "%d" n
| _ -> printfn "failed"

This looks like a very interesting technique, because pattern matching is now a part of the object.

like image 188
Tomas Petricek Avatar answered Oct 26 '22 06:10

Tomas Petricek