本文介绍了翻转/反转 fmap (<$>)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我发现定义了以下内容
(%) = flip fmap
我可以这样写代码:
readFile "/etc/passwd" % lines % filter (not . null)
对我来说,这比替代方案更有意义:
To me it makes more sense than the alternative:
filter (not . null) <$> lines <$> readFile "/etc/passwd"
显然,这只是顺序问题.
Obviously, it's just a matter of order.
有其他人这样做吗?是否有正当理由不编写这样的代码?
Does anyone else do this? Is there a valid reason not to write code like this?
推荐答案
你的操作符 (%)
就是操作符 (<&>)
来自镜头包.
Your operator (%)
is exactly the operator (<&>)
from the lens package.
它可以导入:
import Control.Lens.Operators ((<&>))
这篇关于翻转/反转 fmap (<$>)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!