Case that works:

Seq(fromDir, toDir) find (!_.isDirectory) foreach (println(_))

Case that doesn't:

Seq(fromDir, toDir) find (!_.isDirectory) foreach (throw new Exception(_.toString))

Compilation ends with this error:

error: missing parameter type for expanded function ((x$4) => x$4.toString)

Now if I write it this way it compiles again:

Seq(fromDir, toDir) find (!_.isDirectory) foreach (s => throw new Exception(s.toString))

I am sure there is a reasonable explanation ;)

link|improve this question

62% accept rate
feedback

2 Answers

up vote 9 down vote accepted

This has already been addressed in a related question. Underscores extend outwards to the closest closing Expr : top-level expressions or expressions in parentheses.

(_.toString) is an expression in parentheses. The argument you are passing to Exception in the error case is therefore, after expansion, the full anonymous function (x$1) => x$1.toString of type A <: Any => String, while Exception expects a String.

In the println case, _ by itself isn't of syntactic category Expr, but (println (_)) is, so you get the expected (x$0) => println(x$0).

link|improve this answer
Thanks. Now a related question is whether in such cases, the compiler could still support the _ as a shortcut. Any cases where this wouldn't work "as expected"? – ebruchez Jan 15 '11 at 23:40
feedback

The difference is whether _ stands for the whole parameter, or is part of an expression. Depending on which, it falls into one of the two following categories:

Partially Applied Function

Seq(fromDir, toDir) find (!_.isDirectory) foreach (println(_))

translates into

Seq(fromDir, toDir) find (!_.isDirectory) foreach ((x$1) => println(x$1))

Anonymous Function Parameter

Seq(fromDir, toDir) find (!_.isDirectory) foreach (throw new Exception(_.toString))

translates into

Seq(fromDir, toDir) find (!_.isDirectory) foreach (throw new Exception((x$1) => x$1.toString))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.