If come across an interesting case with thunks versus functions in the presence of type Nothing
:
object Test {
def apply(thunk: => Any ): String => Any = _ => thunk
def apply(fun: String => Any): String => Any = fun
}
val res0 = Test { println("hello") }
res0("foo") // --> hello
val res1 = Test { x: String => println(s"hello $x") }
res1("foo") // --> hello foo
val res2 = Test { x: String => throw new RuntimeException("ex") }
util.Try(res2("foo")) // --> Failure
val res3 = Test { throw new RuntimeException("ex") } // boom!
Now the tricky bit is the last case. Is it possible to modify the apply
method to make Scala choose the thunk version of it, instead of the Function1
version (which is more specific and thus preferred, and Nothing <: Function1[_,_]
, therefore...)
I tried to come up with low-high priority implicits and magnet pattern, but haven't found a solution yet.
Here's a quick draft of a type-safe approach based on type classes:
And then:
You might be able to simplify a bit, add variance, etc.