简体   繁体   中英

scala generic function `not found: type ?`

When I use scala to create a function like this,It told me that not found: type ?

scala
    def save[
      K: SpatialComponent: TypeTag,
      V <: CellGrid: TypeTag: ? => TileMergeMethods[V]: ? => TilePrototypeMethods[V]
      ](id: LayerId, rdd: RDD[(K, V)] with Metadata[TileLayerMetadata[K]], method: KeyIndexMethod[K])

Can somebody told me how to resolve this?

I got it,must add this code to build.sbt.

resolvers += Resolver.sonatypeRepo("releases")
addCompilerPlugin("org.spire-math" % "kind-projector" % "0.8.0" cross CrossVersion.binary)

https://github.com/non/kind-projector

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM