当我进行此导入时,如文档中所述
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]
当我删除导入时,它可以工作。这是文档中的错误还是我错过了什么?
当我进行此导入时,如文档中所述
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]
当我删除导入时,它可以工作。这是文档中的错误还是我错过了什么?