F# 是否支持通过标识符模式以外的标准对已区分的联合成员实例进行模式匹配?
例如,假设我想匹配数据的底层形状,并且我想考虑任何具有int * int
形状的东西,而不管 DU 如何对值进行分类。是
这是我现在的做法:
type ExampleDU =
| BinaryCase1 of x:int * y:int
| BinaryCase2 of x:int * y:int
| UnaryCase1 of x:int
let underlyingValue = (1,2)
let asCase1 = BinaryCase1 underlyingValue
let asCase2 = BinaryCase2 underlyingValue
let shapeName =
match asCase1 with
| BinaryCase1 (x,y) | BinaryCase2 (x,y) -> "pair" // is this possible without explicitly writing the name for each part?
| _ -> "atom"
我想要更接近以下内容:
let shapeName =
match asCase1 with
| (x,y) -> "pair"
| _ -> "atom"
F# 目前是否支持一些类似的表达语法,或者我是否坚持明确指定所有情况?
注意:我知道我可以弄清楚如何通过反射找到我想要的信息,但我对这样的解决方案不感兴趣。