- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
A number of common monads arise as free monads,
- Given
data Empty a
,Free Empty
is isomorphic to theIdentity
monad.- Free
Maybe
can be used to model a partiality monad where each layer represents running the computation for a while longer.
Free
可以表达哪些其他 monad ?
Free (Const e)
与
Either e
同构.
Free
无法表达哪些单子(monad)为什么?
最佳答案
几乎所有(直到涉及循环和 mfix
的问题)但不是 Cont
.
考虑 State
单子(monad)
newtype State s a = State (s -> (a,s))
State
就你如何使用它而言
get :: m s --or equivalently (s -> m a) -> m a
set :: s -> m () --or (s,m a) -> m a
runState :: m a -> s -> (a,s)
data StateF s a
= Get (s -> a) | Set s a deriving Functor
type State s a = Free (StateF s) a
get = Impure (Get Pure)
set x = Impure (Set x (Pure ())
runState (Pure a) s = (a,s)
runState (Impure (Get f)) s = runState (f s) s
runState (Impure (Set s next)) _ = runState next s
stop :: m a
maybe :: b -> (a -> b) -> m a -> b
m x
结尾的函数。对于一些
x
作为仿函数中的构造函数,其他函数是运行生成的自由 monad 的方法。在这种情况下
data StopF a = StopF deriving Functor
maybe _ f (Pure a) = f a
maybe b _ (Impure Stop) = b
f a -> a
,代数本质上只是一个函数 a
,当 f
是仿函数时),组合也具有该代数。 (f (g (x)))
但仿函数副产品。仿函数添加
data f :+: g a = Inl (f a) | Inr (g a)
instance (Functor f, Functor g) => Functor (f :+: g) where
fmap f (Inl x) = Inl (fmap f x)
fmap f (Inr x) = Inr (fmap f x)
compAlg :: (f a -> a) -> (g a -> a) -> f :+: g a -> a
compAlg f _ (Inl x) = f x
compAlf _ g (Inr x) = g x
freeAlg :: (f a -> a) -> Free f a -> a
freeAlg _ (Pure a) = a
freeAlg f (Impure x) = f $ fmap (freeAlg f) x
class Calculator f where
eval :: f Integer -> Integer
data Mult a = Mult a a deriving Functor
instance Calculator Mult where
eval (Mult a b) = a*b
data Add a = Add a a deriving Functor
instance Calculator Add where
eval (Add a b) = a+b
data Neg a = Neg a deriving Functor
instance Calculator Neg where
eval (Neg a) = negate a
instance Calculator (Const Integer) where
eval (Const a) = a
data Signum a = Signum a deriving Functor
instance Calculator Signum where
eval (Signum a) = signum a
data Abs a = Abs a deriving Functor
instance Calculator Abs where
eval (Abs a) = abs a
instance (Calculator f, Calculator g) => Calculator (f :+: g) where
eval = compAlg eval
newtype Numerical a = Numerical (
Free (Mult
:+: Add
:+: Neg
:+: Const Integer
:+: Signum
:+: Abs) a deriving (Functor, Monad)
instance Num (Numerical a)
class Pretty f where
pretty :: f String -> String
instance Pretty Mult where
pretty (Mult a b) = a ++ "*" ++ b
Codensity
中。 (“更快的按钮”)但是当它不起作用时,你想摆脱自由代表。记得当我们有
runState (Pure a) s = (a,s)
runState (Impure (Get f)) s = runState (f s) s
runState (Impure (Set s next)) _ = runState next s
Free StateF a
的函数至
s -> (a,s)
仅仅使用结果类型作为我们对状态的定义似乎是合理的……但是我们如何定义操作呢?在这种情况下,您知道答案,但推导它的一种方法是根据 Conal Elliott 所谓的类型类态射进行思考。你要
runState (return a) = return a
runState (x >>= f) = (runState x) >>= (runState f)
runState (set x) = set x
runState get = get
runState (return a) = (Pure a) = \s -> (a,s)
runState (set x)
= runState (Impure (Set x (Pure ())))
= \_ -> runState (Pure ()) x
= \_ -> (\s -> (a,s)) x
= \_ -> (a,x)
runState get
= runState (Impure (Get Pure))
= \s -> runState (Pure s) s
= \s -> (s,s)
>>=
这种方式可能很困难,我不会在此处包含它,但其他这些正是您所期望的定义。
关于haskell - 哪些单子(monad)可以通过某个仿函数表示为 Free?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14641864/
我试图从 monad 中提取一个值,但保留不依赖于 monad 的多态值。具体来说: foo :: (Monad mon, Ring a) => mon a foo = return 3 main :
我是haskell、函数式语言和monads的新手。 我已经搞砸了大约一个月;我读了 learn you a haskell 并且正在玩 snap 试图制作我的 haskell 网站。 但是有一些事情
好的,因此 writer monad 允许您将内容写入 [通常] 某种容器,并在最后取回该容器。在大多数实现中,“容器”实际上可以是任何幺半群。 现在,还有一个“读者”单子(monad)。您可能会认为
来自 a gentle introduction to Haskell ,有以下单子(monad)定律。谁能直观地解释它们的意思? return a >>= k = k a m
我正在寻找 monad 的创造性用途来学习。我在某处读到过 monad 已被用于人工智能,但作为一个 monad 新手,我不知道如何使用。 请包含源代码和示例用法的链接。否standard monad
我已经断断续续地使用 Haskell 好几年了;我对 monad 的工作方式、使用方式以及运算符的含义非常满意 (=>=)做。 但我仍然不知道如何谈论它们!是否有任何标准术语来描述他们所做的事情——改
我正在尝试学习基于标准 Haskell 库的 monad 转换器(mtl?转换器?不确定我下载的 Haskell 平台 - 7.4.1 附带了哪一个)。 我相信我注意到的是每个 monad 转换器定义
背景 我正在阅读《大多数》Adequate Guide to Functional Programming并进行所有练习。我正在阅读第 9 章,Monadic Onions,但我在练习中遇到了困难。
有谁知道 C++ 中的一个好的 monad 模板库。也许,它提供了一些您会在 Haskell 中看到的常见单子(monad),例如 Maybe。 最佳答案 类似 Maybe 的东西可以在 Boost.
wiki.haskell.org 上的 99 个 Haskell 问题中的第 6 个提供了一种单子(monad)方法来测试列表(类型为 [a] )是否为回文: isPalindromeM :: (Eq
我一直在尝试围绕单子(monad)的概念进行思考,并且一直在尝试以下示例: 我有一个 Editor数据类型,表示文本文档的状态和一些处理它的函数。 data Editor = Editor { l
我一直在尝试找到任何讨论何时应该优先使用单子(monad)而不是 Actor (在并发场景中),但我什么也没找到。特别是,我想知道响应式(Reactive)扩展(LINQ to Events)与 F#
我在 Haskell 有一些经验,目前正在学习 Scala。我想知道Scala中是否有与Monads等效的东西? 最佳答案 您可能想查看 scalaz ;它受到 Haskell 的强烈影响。事实上,经
前几天我在谈论函数式编程——尤其是 Haskell 和一些 Java/Scala 人,他们问我什么是 Monad,它们在哪里是必要的。 好吧,定义和例子并不难 - Maybe Monad , IO M
我读过这篇 Q&A但不明白范畴论部分。 到目前为止,这是我的推理:当我查看类型时 F (a -> b) -> F a -> F b (a -> M b) -> M a -> M b a -> F a
import Debug.Trace main = do trace "Main function parses, and returns - " "0" return () 这会引发错误,
在页面 http://www.haskell.org/haskellwiki/Pointfree#Tool_support ,它谈到了 (->) a monad。 这个单子(monad)是什么?符号的
是 x >>= f相当于 retract (liftF x >>= liftF . f) ? 也就是说,从同样是 Monad 的 Functor 构建的自由 monad 的 monad 实例是否将具有
下面是谁先说的? A monad is just a monoid in the category of endofunctors, what's the problem? 在不太重要的一点上,这是真
我大致熟悉 monads 的概念和 arrows如函数式编程中所使用的那样。我还了解到它们可以用来解决类似的问题。 但是,我仍然对如何在任何给定情况下选择使用哪个感到有点困惑。 什么时候应该使用 mo
我是一名优秀的程序员,十分优秀!