I'm trying to create a implicit conversion of Scala's Function1 to java.util.function.Function.
Here's my code:
object Java8ToScala extends App {
implicit def javaFuncToScalaFunc[T, R](func1: Function[T, R]): function.Function[T,R] = {
new function.Function[T, R] {
override def apply(t: T): R = func1.apply(t)
}
}
val javaFunc:function.Function[String,Int] = (s:String) => s.length
println(javaFunc.apply("foo")) // this works
private val strings = new util.ArrayList[String]()
println(strings.stream().map(javaFunc).collect(Collectors.toList())) // this doesn't work
}
The compiler message is hard to understand:
[error] /xxx/Java8ToScala.scala:74: no type parameters for method map: (x$1: java.util.function.Function[_ >: String, _ <: R])java.util.stream.Stream[R] exist so that it can be applied to arguments (java.util.function.Function[String,Int])
[error] --- because ---
[error] argument expression's type is not compatible with formal parameter type;
[error] found : java.util.function.Function[String,Int]
[error] required: java.util.function.Function[_ >: String, _ <: ?R]
[error] Note: String <: Any, but Java-defined trait Function is invariant in type T.
[error] You may wish to investigate a wildcard type such as `_ <: Any`. (SLS 3.2.10)
[error] .map(javaFunc).collect(Collectors.toList()))
[error] ^
[error] /xxx/Java8ToScala.scala:74: type mismatch;
[error] found : java.util.function.Function[String,Int]
[error] required: java.util.function.Function[_ >: String, _ <: R]
[error] .map(javaFunc).collect(Collectors.toList()))
[error] ^
[error] two errors found
[error] (compile:compileIncremental) Compilation failed
[error] Total time: 7 s, completed Dec 18, 2015 10:51:15 AM