- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 his answer对于问题“Distinction between typeclasses MonadPlus
, Alternative
, and Monoid
?” ,爱德华·克梅特说
Moreover, even if
Applicative
was a superclass ofMonad
, you’d wind up needing theMonadPlus
class anyways, because obeyingempty <*> m = empty
isn’t strictly enough to prove that
empty >>= f = empty
So claiming that something is a
MonadPlus
is stronger than claiming it isAlternative
.
很明显,任何不是 monad 的应用仿函数都会自动成为 Alternative
的示例。这不是 MonadPlus
,但 Edward Kmett 的回答暗示存在一个 monad,它是 Alternative
但不是MonadPlus
:其empty
和<|>
会满足Alternative
法律,1 但不是 MonadPlus
2我自己无法举出这样的例子;有人知道吗?
1 我无法找到一组 Alternative
的规范引用法律,但我列出了我认为大约一半的内容my answer对于问题“Confused by the meaning of the Alternative
type class and its relationship to other type classes” (搜索短语“右分配性”)。我认为应该遵守的四项法则是:
<*>
): (f <|> g) <*> a = (f <*> a) <|> (g <*> a)
<*>
): empty <*> a = empty
fmap
): f <$> (a <|> b) = (f <$> a) <|> (f <$> b)
fmap
): f <$> empty = empty
我也很乐意接受提供一组更有用的 Alternative
法律。
2 我知道 there’s some ambiguity about what the MonadPlus
laws are ;我对使用左分布或左捕获的答案感到满意,尽管我不太喜欢前者。
最佳答案
答案的线索在 HaskellWiki about MonadPlus you linked to 中。 :
Which rules? Martin & Gibbons choose Monoid, Left Zero, and Left Distribution. This makes
[]
a MonadPlus, but notMaybe
orIO
.
所以根据你喜欢的选择,Maybe
不是 MonadPlus (虽然有一个实例,但它不满足左分布)。让我们证明它满足Alternative。
Maybe
是一个替代方案<*>
): (f <|> g) <*> a = (f <*> a) <|> (g <*> a)
案例1:f=Nothing
:
(Nothing <|> g) <*> a = (g) <*> a -- left identity <|>
= Nothing <|> (g <*> a) -- left identity <|>
= (Nothing <*> a) <|> (g <*> a) -- left failure <*>
案例2:a=Nothing
:
(f <|> g) <*> Nothing = Nothing -- right failure <*>
= Nothing <|> Nothing -- left identity <|>
= (f <*> Nothing) <|> (g <*> Nothing) -- right failure <*>
案例3:f=Just h, a = Just x
(Just h <|> g) <*> Just x = Just h <*> Just x -- left bias <|>
= Just (h x) -- success <*>
= Just (h x) <|> (g <*> Just x) -- left bias <|>
= (Just h <*> Just x) <|> (g <*> Just x) -- success <*>
<*>
): empty <*> a = empty
这很简单,因为
Nothing <*> a = Nothing -- left failure <*>
fmap
): f <$> (a <|> b) = (f <$> a) <|> (f <$> b)
案例1:a = Nothing
f <$> (Nothing <|> b) = f <$> b -- left identity <|>
= Nothing <|> (f <$> b) -- left identity <|>
= (f <$> Nothing) <|> (f <$> b) -- failure <$>
案例2:a = Just x
f <$> (Just x <|> b) = f <$> Just x -- left bias <|>
= Just (f x) -- success <$>
= Just (f x) <|> (f <$> b) -- left bias <|>
= (f <$> Just x) <|> (f <$> b) -- success <$>
fmap
): f <$> empty = empty
另一个简单的:
f <$> Nothing = Nothing -- failure <$>
Maybe
不是 MonadPlus让我们证明 Maybe
的断言不是 MonadPlus:我们需要证明 mplus a b >>= k = mplus (a >>= k) (b >>= k)
并不总是成立。与以往一样,技巧是使用一些绑定(bind)来偷偷取出非常不同的值:
a = Just False
b = Just True
k True = Just "Made it!"
k False = Nothing
现在
mplus (Just False) (Just True) >>= k = Just False >>= k
= k False
= Nothing
这里我使用了bind (>>=)
从胜利的口中夺取失败(Nothing
),因为Just False
看起来很成功。
mplus (Just False >>= k) (Just True >>= k) = mplus (k False) (k True)
= mplus Nothing (Just "Made it!")
= Just "Made it!"
这里失败( k False
)是很早就计算出来的,所以被忽略了,我们 "Made it!"
.
所以,mplus a b >>= k = Nothing
但是mplus (a >>= k) (b >>= k) = Just "Made it!"
.
您可以像我一样使用 >>=
来查看此内容打破 mplus
的左偏对于 Maybe
.
以防万一你觉得我没有做足够繁琐的推导,我将证明我使用的身份:
首先
Nothing <|> c = c -- left identity <|>
Just d <|> c = Just d -- left bias <|>
来自实例声明
instance Alternative Maybe where
empty = Nothing
Nothing <|> r = r
l <|> _ = l
其次
f <$> Nothing = Nothing -- failure <$>
f <$> Just x = Just (f x) -- success <$>
来自(<$>) = fmap
和
instance Functor Maybe where
fmap _ Nothing = Nothing
fmap f (Just a) = Just (f a)
第三,其他三个需要更多的工作:
Nothing <*> c = Nothing -- left failure <*>
c <*> Nothing = Nothing -- right failure <*>
Just f <*> Just x = Just (f x) -- success <*>
来自定义
instance Applicative Maybe where
pure = return
(<*>) = ap
ap :: (Monad m) => m (a -> b) -> m a -> m b
ap = liftM2 id
liftM2 :: (Monad m) => (a1 -> a2 -> r) -> m a1 -> m a2 -> m r
liftM2 f m1 m2 = do { x1 <- m1; x2 <- m2; return (f x1 x2) }
instance Monad Maybe where
(Just x) >>= k = k x
Nothing >>= _ = Nothing
return = Just
所以
mf <*> mx = ap mf mx
= liftM2 id mf mx
= do { f <- mf; x <- mx; return (id f x) }
= do { f <- mf; x <- mx; return (f x) }
= do { f <- mf; x <- mx; Just (f x) }
= mf >>= \f ->
mx >>= \x ->
Just (f x)
所以如果 mf
或mx
都是Nothing,结果也是Nothing
,而如果 mf = Just f
和mx = Just x
,结果是Just (f x)
关于haskell - Monad 是替代品但不是 MonadPlus 的例子是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13122489/
monad 被定义为类别 C 上的内仿函数。假设 C 具有类型 int 和 bool 以及其他构造类型作为对象。现在让我们考虑在这个类别上定义的列表 monad。 根据它的定义,list 是一个内仿函
我试图采取例如ExceptT a (StateT A M) , 对于某些具体类型 A和单子(monad)M ,并将它们包装到我的新自定义单子(monad)中。 首先我确定StateT A M经常出现在
我读到(例如 here 和 here )所有基本单子(monad)(Mabye, Error, ...) 源自其相应的 monad 转换器(MaybeT, ErrorT, ...) 使用身份 mona
Haskell 的状态单子(monad) State s a迫使我保持相同类型的 s在整个做 block 期间。但是由于 state monad 实际上只是一个函数,如果我将它定义为 State
我一直在阅读some materials on free monads而且我真的不认为我离实现更近了,但我认为我更接近于理解它们是什么! 鉴于上述大量资源,我的理解是自由单子(monad)从“计算”工
假设我有一个由两个 monad 操作组成的函数: co::Monad m => m a -> m a -> m a 您可以将 co 视为一个高阶函数,它描述两个单子(monad)操作如何相互协作来完成
在 SO解释了为什么像 scalaz、cats (Scala) 或 Arrow (Kotlin) 中的 Validation 不能是 monad。 据我所知,这是因为他们已经根据应用仿函数对 mona
我对 Haskell 还很陌生,并且慢慢地意识到 Monad fail 的存在有问题。真实世界的 Haskell warns against its use (“再一次,我们建议您几乎总是避免使用失败
我正在阅读现实世界 Haskell 中的 monad 转换器。在以下示例中,堆栈为 Writer在顶部State在Reader之上在IO之上。 {-# Language GeneralizedNewt
我看到的典型 Pause monad 实现如下所示(基于 Giulia Costantini 和 Giuseppe Maggiore 编写的 Friendly F# 的第 5 章)。 open Sys
“Monads 允许程序员使用顺序构建 block 来构建计算”,因此它允许我们组合一些计算。如果是这样,那为什么下面的代码不能运行呢? import Control.Monad.Trans.Stat
这是我第一次认识 Monad Transformers,所以答案可能很明显。 假设我在 StateT MyMonad MyType 类型的 do 块中,我想让另一个相同类型的函数修改状态并返回 MyM
人们通常说类型是单子(monad)。 在某些函数式语言和库(如 Scala/Scalaz)中,您有一个类型构造函数,如 List 或 Option,您可以定义一个与原始类型分离的 Monad 实现。所
我的目标是创建一个函数,该函数在 ReaderT WriterT 堆栈或 RWS 堆栈中使用 list monad。更一般地说,我如何在 mtl 类型类(如 MonadReader、MonadWrit
我只是想知道是否有一个简洁的术语来表示既是单子(monad)又是单子(monad)的东西。我做了一些搜索,我知道these structures exist ,但我还没有找到他们的名字。 最佳答案 在
我正在玩写一个网络应用程序。在这种情况下,我使用 scotty和 redis ,但是这个问题出现在任何 web/db 组合中。在此之前我使用了 happstack,所以我也喜欢那里的一个例子。 Sco
是 x >>= f相当于 retract (liftF x >>= liftF . f) ? 也就是说,从同样是 Monad 的 Functor 构建的自由 monad 的 monad 实例是否将具有
我正在尝试编写一个只能包含 Num 的新 monad。当它失败时,它返回 0,就像 Maybe monad 在失败时返回 Nothing 一样。 这是我到目前为止所拥有的: data (Num a)
我正在使用 operational monad作者:海因里希·阿普菲尔姆斯。 我想用结果类型的 monad 参数化解释器。 我的代码的以下版本编译: {-# LANGUAGE GADTs #-} im
假设所有的 monad 都可以用 Free 来表示。 (如果这不是真的,什么是反例,为什么)?怎么可能the continuation monad或其对应的变压器用 Free 表示或 FreeT -
我是一名优秀的程序员,十分优秀!