我们能否将没有给定构造函数约束的 GADT 转换为具有上述约束的 GADT?我想这样做是因为我想深度嵌入 Arrows 并用(目前)似乎需要的表示做一些有趣的事情Typeable
。(一个原因)
data DSL a b where
Id :: DSL a a
Comp :: DSL b c -> DSL a b -> DSL a c
-- Other constructors for Arrow(Loop,Apply,etc)
data DSL2 a b where
Id2 :: (Typeable a, Typeable b) => DSL2 a a
Comp2 :: (Typeable a, Typeable b, Typeable c) => DSL2 b c -> DSL2 a b -> DSL2 a c
-- ...
我们可以尝试以下from
函数,但由于我们没有
Typeable
递归点的信息,所以很快就会中断
from :: (Typeable a, Typeable b) => DSL a b -> DSL2 a b
from (Id) = Id2
from (Comp g f) = Comp2 (from g) (from f)
因此,我们尝试在类型类中捕获转换。然而,这将被打破,因为我们将失去存在主义的Typeable b
信息。b
class From a b where
from :: a -> b
instance (Typeable a, Typeable b) => From (DSL a b) (DSL2 a b) where
from (Id) = Id2
from (Comp g f) = Comp2 (from g) (from f)
还有其他建议吗?最终,我想创建一个深度嵌入Category
并与类型参数信息Arrow
一起。Typeable
这样我就可以使用箭头语法在我的 DSL 中构造一个值,并拥有相当标准的 Haskell 代码。也许我必须求助于 Template Haskell?