问题描述
import Barbies
import Barbies.Constraints
class MyClass a where
instance (ConstraintsB b,AllBF MyClass f b) => MyClass (Barbie b f) where
由于隐藏的种类多态性,此操作失败。 Simon says:
•变量
k
的出现频率更高 在约束AllBF MyClass f b
中 比实例头MyClass (Barbie b f)
(使用UndecidableInstances
允许)
在这里我想避免使用UndecidableInstances
。我尝试过的一件事是使我的实例具有f
的形式:
instance (ConstraintsB b,AllBF MyClass (f :: Type -> Type) b) => MyClass (Barbie b f) where
•非法嵌套约束
AllBF MyClass f b
(使用UndecidableInstances
允许这样做
天真的,我尝试内联AllBF
的定义,但这并没有任何改变:
instance (ConstraintsB b,AllB (ClassF MyClass (f :: Type -> Type)) b) => MyClass (Barbie b f) where
•非法嵌套约束
AllB (ClassF MyClass f) b
(使用UndecidableInstances
允许)
是否可以在不打开UndecidableInstances
的情况下创建此实例?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)