作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在阅读“Learn You A Haskell For Great Good!”现在我在“仿函数类型类”部分。
在这里,他们通过将第一个类型固定如下,将 Either 变成一个仿函数:
instance Functor (Either a) where
fmap f (Right x) = Right (f x)
fmap f (Left x) = Left x
fmap f (Left x) = Left (f x)
fmap f (Right x) = Right x
最佳答案
你不能; Either a
可以是仿函数,因为 Either
的部分应用有样* -> *
,但不能从右侧进行部分应用。
相反,您可能对 Bifunctor
感兴趣。 Either
的实例:
instance Bifunctor Either where
bimap f _ (Left a) = Left (f a)
bimap _ g (Right b) = Right (g b)
bimap
接受两个函数,一个用于由
Either
包装的两种类型中的每一个.
> bimap (+1) length (Left 3)
Left 4
> bimap (+1) length (Right "hi")
Right 2
first
和
second
专注于一种或另一种类型的功能。
second
对应于常规
fmap
对于
Either
;
first
是您正在寻找的功能。
> first (+1) (Left 3)
Left 4
> first (+1) (Right 3)
Right 3
> second (+1) (Left 3)
Left 3
> second (+1) (Right 3)
Right 4
Control.Arrow
模块提供
left
函数,实际上与
second
相同,但具有更具描述性的名称和不同的派生。比较它们的类型:
> :t Data.Bifunctor.second
Data.Bifunctor.second :: Bifunctor p => (b -> c) -> p a b -> p a c
> :t Control.Arrow.left
Control.Arrow.left :: ArrowChoice a => a b c -> a (Either b d) (Either c d)
second
被硬编码以使用函数并且可以被
p ~ Either
限制.
left
被硬编码以使用
Either
并且可以被
a ~ (->)
限制.
Control.Arrow
还提供了
second
类似于
Bifunctor
的函数元组的实例:
> :t Control.Arrow.second
Control.Arrow.second :: Arrow a => a b c -> a (d, b) (d, c)
> Control.Arrow.second (+1) (1,2) == Data.Bifunctor.second (+1) (1,2)
True
关于haskell - 如何使 Either 成为第二种类型的仿函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50253569/
我是一名优秀的程序员,十分优秀!