Tagged Questions
4
votes
1answer
223 views
Why does Scala type inference fail here?
I have this class in Scala:
object Util {
class Tapper[A](tapMe: A) {
def tap(f: A => Unit): A = {
f(tapMe)
tapMe
}
def tap(fs: (A => Unit)*): A = {
...
4
votes
1answer
330 views
Overloading, generic type inference and the 'params' keyword
I just noticed a strange behavior with overload resolution.
Assume that I have the following method :
public static void DoSomething<T>(IEnumerable<T> items)
{
// Whatever
// ...