Is it possible to make a type extension for a generic type with a concrete type parameter? I failed with these syntaxes:
Syntax 1:
type Foo<Bar> with
member this.BarStuff = // access `Bar´ specifics
Syntax 2:
type Foo<'T when 'T :> Bar> with
member this.BarStuff = // access `Bar´ specifics
Yes, you can but you should use the C# style syntax: