- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图通过移植 Dan Piponi 的本教程中的一些示例来理解 Scala 中的 Monad Transformers:http://blog.sigfpe.com/2006/05/grok-haskell-monad-transformers.html
我做了几个简单的:
import Control.Monad.State
import Control.Monad.Identity
test1 = do
a <- get
modify (+1)
b <- get
return (a,b)
test2 = do
a <- get
modify (++"1")
b <- get
return (a,b)
go1 = evalState test1 0
go2 = evalState test2 "0"
import scalaz._, Scalaz._
val test1 = for {
a <- get[Int]
_ <- modify[Int](1+)
b <- get
} yield (a,b)
val test2 = for {
a <- get[String]
_ <- modify[String](_ + "1")
b <- get
} yield (a,b)
val go1 = test1.eval(0)
val go2 = test2.eval("0")
test3 = do
modify (+ 1)
lift $ modify (++ "1")
a <- get
b <- lift get
return (a,b)
go3 = runIdentity $ evalStateT (evalStateT test3 0) "0"
type SST[F[_],A] = StateT[F,String,A]
type IST[F[_],A] = StateT[F,Int,A]
val p1: StateT[Id,Int,Unit] = modify[Int](1+)
val p2: StateT[Id,String,Unit] = modify[String](_ + "1")
val p3: StateT[({type l[a]=StateT[Id,String,a]})#l,Int,Unit] = p2.liftM[IST]
import scalaz.Lens._
val test3 = for {
_ <- firstLens[Int,String] lifts (modify (1+))
_ <- secondLens[Int,String] lifts (modify (_ + "1"))
a <- firstLens[Int,String] lifts get
b <- secondLens[Int,String] lifts get
} yield (a,b)
val go3 = test3.eval(0,"0")
最佳答案
问题是 modify
你得到的通常进口来自State
,并且不会帮助您处理 StateT
.
从 Haskell 类型签名开始是个好主意:
test3
:: (MonadState [Char] m, MonadState s (t m), MonadTrans t,
Num s) =>
t m (s, [Char])
import scalaz._, Scalaz._
def test3[M[_]: Monad](implicit
inner: MonadState[({ type T[s, a] = StateT[M, s, a] })#T, String],
outer: MonadState[
({
type T[s, a] = StateT[({ type L[y] = StateT[M, String, y] })#L, s, a ]
})#T,
Int
],
mt: MonadTrans[({ type L[f[_], a] = StateT[f, Int, a] })#L]
) = for {
_ <- outer.modify(_ + 1)
_ <- mt.liftMU(inner.modify(_ + "1"))
a <- outer.get
b <- mt.liftMU(inner.get)
} yield (a, b)
outer
但是,例如,您必须提供一些帮助:
def test3[M[_]: Monad](implicit
inner: MonadState[({ type T[s, a] = StateT[M, s, a] })#T, String],
mt: MonadTrans[({ type L[f[_], a] = StateT[f, Int, a] })#L]
) = {
val outer =
StateT.stateTMonadState[Int, ({ type L[y] = StateT[M, String, y] })#L]
for {
_ <- outer.modify(_ + 1)
_ <- mt.liftMU(inner.modify(_ + "1"))
a <- outer.get
b <- mt.liftMU(inner.get)
} yield (a, b)
}
scala> test3[Id].eval(0).eval("0")
res0: (Int, String) = (1,01)
Id
感到满意,可以稍微清理一下。作为内部状态转换器的单子(monad)(如您的评论所示):
def test3 = {
val mt = MonadTrans[({ type L[f[_], a] = StateT[f, Int, a] })#L]
val outer = StateT.stateTMonadState[Int, ({ type L[y] = State[String, y] })#L]
for {
_ <- outer.modify(_ + 1)
_ <- mt.liftMU(modify[String](_ + "1"))
a <- outer.get
b <- mt.liftMU(get[String])
} yield (a, b)
}
关于scala - 在scalaz中堆叠StateT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23486394/
我正在尝试学习 scalaz7 镜头。有没有更好的方法来链接集合操作? case class Outer(left: Inner, right: Inner) case class Inner(top
我需要使用 scalaz 中的 EqualsOps (===),但是导入 scalaz.Scalaz._ 给我带来了与 anorm 的 get 方法的命名冲突。 这是编译错误: reference t
这个问题与this one有关,我试图了解如何在 Scala 中使用 reader monad。 在答案中,作者使用以下代码获取 ReaderInt[String] 的实例: import scala
在 Nick Partridge's presentation on deriving scalaz ,基于旧版本的 scalaz,他使用一个函数引入了验证: def even(x: Int): Va
难以理解 scalaz 中 === 的行为 1. scala> 1.some === Some(1) res33: Boolean = true 2. scala> Some(1) === 1.
我正在尝试根据 question 调整我的代码.一切都很好,除了我的方法返回 scalaz.\/ 而不是 scala.util.Either。所以现在我必须写一个像这样的猴子代码: def myFun
简介 我使用Scalaz 7在许多项目中进行迭代,主要用于处理大型文件。我想开始切换到 Scalaz streams ,它们旨在替换 iteratee 包(坦率地说,它缺少很多部分,并且使用起来有点痛
我想弄清楚如何使用 StateT结合两个 State基于对我的 Scalaz state monad examples 的评论的状态转换器回答。 看来我已经很接近了,但是在尝试申请 sequence
我正在寻找一种用于异步操作的数据类型。 我发现 scalaz.ContT[Trampoline, Unit, ?]支持 scalaz.concurrent.Future 中的所有功能,此外还有 Bin
为什么我会收到以下信息 error: could not find implicit value for parameter C: scalaz.Catchable[F2]执行P(1,2,3).run
我在我的代码中看到了一个常见的模式。我已经对数据库中的结果进行了排序,我需要以嵌套结构发出它们。我希望它可以流式传输,因此我希望一次在内存中保留尽可能少的记录。使用 TravesableLike.gr
阅读http://eed3si9n.com/learning-scalaz/Tagged+type.html并尝试示例代码: import scalaz._; import Scalaz._ seal
我如何转换 val from: ValidationNel[E, ValidationNel[E, T]] 到 val to: ValidationNel[E, T] 同时捕获所有验证错误? 最佳答案
我试图在我们的项目中使用 scalaz 验证,但遇到了以下情况: def rate(username: String, params: Map[String, String]): Validation
在 scalaz 中,当我们定义一个模块时,我们额外定义了隐式的辅助函数。这是一个定义示例以及客户如何使用它: trait Functor[F[_]] { def map[A,B](fa: F[A
有一个trait叫 克莱斯利 在 scalaz图书馆。查看代码: import scalaz._ import Scalaz._ type StringPair = (String, String)
你们知道为什么 Scalaz 的例子总是使用这种导入技术: import scalaz._ import Scalaz._ 而不是: import scalaz.Scalaz._ ?我试图了解偏好背后
这是一个非常简单的问题。观看精彩的镜头介绍后: http://www.youtube.com/watch?v=efv0SQNde5Q 我想我可以尝试演讲中介绍的简单示例之一: import scala
如果我有多个返回具有固定错误类型的东西的 Validation[E, _] 的操作,我可以在 for-comprehension 中使用它们。例如: val things: Validation[E,
我使用 bing 操作在 Scalaz 上编写了一个 Fibonacci 函数。这是我的代码: import scalaz._, Scalaz._ def fib(i: Int): Option[In
我是一名优秀的程序员,十分优秀!