Let's say that I have two methods defined with the same name and return, but different params:
def overload(x: Int) = x.toString
def overload(s: String) = s
Now I want to convert one of them to a function. If the method weren't overloaded, I would do this:
val f = overload _
But since it is, the compiler rightly complains about an ambiguous reference. Is there any way to make a function of one or the other of the overload methods other than to rename one of them?
Thanks!
John