3

当我进行此导入时,如文档中所述

import cats.std.all._

以下代码无法编译:

def merge(m1: Map[String, Int], m2: Map[String, Int]): Map[String, Int] = m1 |+| m2

我收到了这个错误:

value |+| is not a member of Map[String,Int]

当我删除导入时,它可以工作。这是文档中的错误还是我错过了什么?

4

1 回答 1

0

可能|+|cats.std.all._. 只需从该库中导入您所需要的即可。

于 2016-06-22T10:17:23.917 回答