我正在尝试将一些 Haskell 代码移植到 F#,但我遇到了一个奇怪的错误,我不知道如何解决。我有一个有区别的联合,其功能定义如下:
type OtherType =
OtherType1 of string
| OtherType2 of string
type MyType<'a> =
MySub1 of DateTime * string * (float -> MyType<'a>)
| MySub2 of 'a
| MySub3 of DateTime * string * (bool -> MyType<'a>)
后来我有一个适用于这种类型的函数
let fun1 date myType (myFun2: ('b -> MyType<'a>)) =
match myType with
| OtherType1(string1) -> MySub1(date, string1, myFun2)
| OtherType2(string1) -> MySub3(date, string1, myFun2)
然后,这将 myFun2 限制为类型 (float -> MyType<'a>)。有什么办法可以防止这种情况发生并保持 k 通用?
结果是第二个模式匹配失败。
谢谢你。
更新:
查看我试图复制的 Haskell 代码,我认为问题在于,在 Haskell 版本中,OtherType 是 GADT,OtherType1 变为 OtherType Double,OtherType2 变为 OtherType Bool。然后 myFun2 将能够执行这两个功能。如果有人感兴趣,这是代码。
data OtherType a where
OtherType1 :: String -> OtherType Double
OtherType2 :: String -> OtherType Bool
data MyType a = MySub1 UTCTime String (Double -> MyType a)
| MySub2 a
| MySub3 UTCTime String (Bool -> MyType a)
myFun1 :: UTCTime -> OtherType a -> MyType a
myFun1 time o = myFun1' o MySub2
where
myFun1' :: OtherType b-> (b -> MyType a) -> MyType a
myFun1' (OtherType1 name) k = MySub1 time name k
myFun1' (OtherType2 name) k = MySub3 time name k
所以我想要问的问题是,可以在 F# 中复制 GADT 吗?