作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
trait Cohoist[F[_[_], _]] extends ComonadTrans[F] {
def cohoist[M[_], N[_]: Comonad](f: M ~> N): F[M, ?] ~> F[N, ?]
}
ComonadTrans
被定义为:
trait ComonadTrans[F[_[_], _]] {
def lower[G[_]: Cobind, A](a: F[G, A]): G[A]
}
最佳答案
ComonadTrans
对理解来说并不重要 cohoist
,这类似于 map 的高阶版本。map
可以通过翻转论证来重新表述,如
[A, B](A => B) => (F[A] => F[B])
F
.
~>
只是
F ~> G
[A]F[A] => G[A]
cohoist
的签名
[M[_], N[_]: Comonad]([A]M[A] => N[A]) => ([A]F[M, A] => F[N, A])
A
不能组合并拉到初始 tparam 列表中;除了说“那行不通”之外,我不想在这里详细介绍)
F
,制作“F of M”到“F of N”变压器。
关于scala - 什么是 scalaz 中的 Cohoist?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54160426/
scalaz定义一个 Cohoist : trait Cohoist[F[_[_], _]] extends ComonadTrans[F] { def cohoist[M[_], N[_
我是一名优秀的程序员,十分优秀!