无法声明受 Monad 约束的 MonadPlus 接口
Failed to declare MonadPlus interface constrained on Monad
我正在尝试像这样声明 MonadPlus 接口:
module NanoParsec.Plus
%access public export
interface Monad m => MonadPlus m where
zero : m a
plus : m a -> m a -> m a
但是有一个错误:
|
5 | interface Monad m => MonadPlus m where
| ~~~~~~~
When checking type of constructor of NanoParsec.Plus.MonadPlus#Monad m:
When checking argument m to type constructor Prelude.Monad.Monad:
Type mismatch between
Type (Type of m)
and
Type -> Type (Expected type)
我做错了什么?如何解决这个问题?我说 Idris 没有自己的 MonadPlus 接口是对的吗?如果是,为什么?
在Idris中,定义接口时,参数类型默认为Type
,所以这里的MonadPlus m
是MonadPlus (m: Type)
的简写,Idris把m
当成一个Type
。这当然不符合约束 Monad m
,它期望 Type -> Type
.
如果你想对其他东西进行参数化,你必须明确,比如
interface Monad m => MonadPlus (m: Type -> Type) where
zero : m a
plus : m a -> m a -> m a
MonadPlus
本身超出了我的知识范围,所以我不知道它在 Idris 中是否存在。
我正在尝试像这样声明 MonadPlus 接口:
module NanoParsec.Plus
%access public export
interface Monad m => MonadPlus m where
zero : m a
plus : m a -> m a -> m a
但是有一个错误:
|
5 | interface Monad m => MonadPlus m where
| ~~~~~~~
When checking type of constructor of NanoParsec.Plus.MonadPlus#Monad m:
When checking argument m to type constructor Prelude.Monad.Monad:
Type mismatch between
Type (Type of m)
and
Type -> Type (Expected type)
我做错了什么?如何解决这个问题?我说 Idris 没有自己的 MonadPlus 接口是对的吗?如果是,为什么?
在Idris中,定义接口时,参数类型默认为Type
,所以这里的MonadPlus m
是MonadPlus (m: Type)
的简写,Idris把m
当成一个Type
。这当然不符合约束 Monad m
,它期望 Type -> Type
.
如果你想对其他东西进行参数化,你必须明确,比如
interface Monad m => MonadPlus (m: Type -> Type) where
zero : m a
plus : m a -> m a -> m a
MonadPlus
本身超出了我的知识范围,所以我不知道它在 Idris 中是否存在。