如何将两个 Function0 值合并为一个 Function0
我想象这样的事情:
def combine[A, B, C](f: (A, B) => C): (M[A], M[B]) => M[C]
而M
将是Function0
。这在scalaz中可能吗?
I imagine something like this:
def combine[A, B, C](f: (A, B) => C): (M[A], M[B]) => M[C]
while M
would be Function0
. Is this possible in scalaz?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在标准 scala 中,这并不难,只需坚持你的签名:
这是一个小例子:
In standard scala it is not that hard, simply stick to your signature:
Here is a small example: