VS
Size: a a a
VS
I
I
I
PD
let foo (SomePattern x) = …
let foo ((SomePattern x) as thisLike) = …
, то ты именно это и должен будешь сделать. И ничего, всех устраиваетPD
VS
PD
this в методахPD
let foo this = ()member this.Foo() = ()AH
type Id =
Id of int
member (Id i).Value = i
AH
AH
PD
type Id =
| Id of int
member this.Value = let (Id x) = this in x
AH
PD
AH
AH
VS
AH