I'm working on a DSL for a experimental library I'm building in Scala, and I've run into some vexing peculiarities of Scala's type inference as it pertains to lambda expression arguments that don't seem to be covered in the book Programming In Scala.

In my library, I have a trait, Effect[-T], that is used to represent temporary modifiers that can be applied to an object of type T. I have a object, myEffects, that has a method named += that accepts an argument of type Effect[PlayerCharacter]. Lastly, I have a generic method, when[T], that is used for constructing conditional effects by accepting a conditional expression and another effect as an argument. The signature is as follows:

def when[T](condition : T => Boolean) (effect : Effect[T]) : Effect[T]

When I call the "when" method with the above signature, passing it's result to the += method, it is unable to infer the type of the argument to the lambda expression.

myEffects += when(_.hpLow()) (applyModifierEffect) //<-- Compiler error

If I combine the arguments of "when" into a single parameter list, Scala is able to infer the type of the lambda expression just fine.

def when[T](condition : T => Boolean, effect : Effect[T]) : Effect[T]

/* Snip */

myEffects += when(_.hpLow(), applyModifierEffect) //This works fine!

It also works if I remove the second parameter entirely.

def when[T](condition : T => Boolean) : Effect[T]

/* Snip */

myEffects += when(_.hpLow()) //This works too!

However, for aesthetic reasons, I really want the the arguments to be passed to the "when" method as separate parameter lists.

My understanding from section 16.10 of Programming in Scala is that the compiler first looks at whether the method type is known, and if so it uses that to infer the expected type of it's arguments. In this case, the outermost method call is +=, which accepts an argument of type Effect[PlayerCharacter]. Since the return type of when[T] is Effect[T], and the method to which the result is being passed expects an argument of type Effect[PlayerCharacter], it can infer that T is PlayerCharacter, and therefore the type of the lambda expression passed as the first argument to "when" is PlayerCharacter => Boolean. This seems to be how it works when the arguments are provided in one parameter list, so why does breaking the arguments into two parameter lists break it?

link|improve this question
1  
feedback

2 Answers

I'm relatively new to Scala myself, and I don't have a lot of detailed technical knowledge of how the type inference works. So best take this with a grain of salt.

I think the difference is that the compiler is having trouble proving to itself that the two Ts are the same in condition : T => Boolean and effect : Effect[T], in the two-parameter-list version.

I believe when you have multiple parameter lists (because Scala views this as defining a method which returns a function that consumes the next parameter list) the compiler treats the parameter lists one at a time, not all together as in the single parameter list version.

So in this case:

def when[T](condition : T => Boolean, effect : Effect[T]) : Effect[T]

/* Snip */

myEffects += when(_.hpLow(), applyModifierEffect) //This works fine!

The type of applyModifierEffect and the required parameter type of myEffects += can help constrain the parameter type of _.hpLow(); all the Ts must be PlayerCharacter. But in the following:

myEffects += when(_.hpLow()) (applyModifierEffect)

The compiler has to figure out the type of when(_.hpLow()) independently, so that it can check if it's valid to apply it to applyModifierEffect. And on its own, _.hpLow() doesn't provide enough information for the compiler to deduce that this is when[PlayerCharacter](_.hpLow()), so it doesn't know that the return type is a function of type Effect[PlayerCharacter] => Effect[PlayerCharacter], so it doesn't know that it's valid to apply that function in that context. My guess would be that the type inference just doesn't connect the dots and figure out that there is exactly one type that avoids a type error.

And as for the other case that works:

def when[T](condition : T => Boolean) : Effect[T]

/* Snip */

myEffects += when(_.hpLow()) //This works too!

Here the return type of when and its parameter type are more directly connected, without going through the parameter type and the return type of the extra function created by currying. Since myEffects += requires an Effect[PlayerCharacter], the T must be PlayerCharacter, which has a hpLow method, and the compiler is done.

Hopefully someone more knowledgeable can correct me on the details, or point out if I'm barking up the wrong tree altogether!

link|improve this answer
You might be correct on that. I don't really think of functions with multiple parameter lists as being truly curried because you have to use an underscore in place of any missing argument lists when you call it, whereas if you have a function that is explicitly curried, such as "def curried(x : Int) = (y : Int) => x + y", you don't have to use the underscores. But, perhaps my mental-model of how Scala treats these types of functions needs some revision. – Nimrand Oct 5 '11 at 2:37
@Nimrand Ah, I didn't know you had to add underscores to do that. I do know that with multiple parameter lists the compiler will fix type parameters based entirely on parameters supplied to the first list (sometimes this is helpful and avoids the need for explicit hints to avoid ambiguities, sometimes it causes type errors that can be resolved with manual type annotations). Multiple parameter lists are definitely treated differently by the type inferencer, even if they don't get the same treatment as explicit use of functions. – Ben Oct 5 '11 at 3:42
feedback

I am a little confused because in my view, none of the versions you say work should, and indeed I cannot make any of them work.

Type inferences works left to right from one parameter list (not parameter) to the next. Typical example is method foldLeft in collections (say Seq[A])

def foldLeft[B] (z: B)(op: (B, A) => B): B

The type of z will makes B known, so op can be written without specifying B (nor A which is known from the start, type parameter of this). If the routine was written as

def foldLeft[B](z: B, op: (B,A) => B): B

or as

def foldLeft[B](op: (B,A) => B)(z: B): B

it would not work, and one would have to make sure op type is clear, or to pass the B explicity when calling foldLeft.

In your case, I think the most pleasant to read equivalent would be to make when a method of Effect, (or make it look like one with an implicit conversion) you would then write

Effects += applyModifierEffect when (_.hpLow())

As you mentionned that Effect is contravariant, when signature is not allowed for a method of Effect (because of the T => Boolean, Function is contravariant in its first type parameter, and the condition appears as a parameter, so in contravariant position, two contravariants makes a covariant), but it can still be done with an implicit

object Effect {
  implicit def withWhen[T](e: Effect[T]) 
    = new {def when(condition: T => Boolean) = ...}
}
link|improve this answer
If foldLeft were written as def foldLeft[B](z: B, op: (B,A) => B): B, wouldn't it still work because passing a value for z would bind B to its type? Or does the type of everything in a parameter list have to be inferable independently of other things in the same list? – Ben Oct 5 '11 at 6:09
The second one. Only information gained from previous parameter lists are available. – didierd Oct 5 '11 at 6:49
You are correct that when the type parameter of a inferred from its arguments, only the first argument list is used. I believe the reason that it is able to infer the type parameter of "when" is that it's result is being passed to a method that expects an argument of type Effect[PlayerCharacter], and so "when"'s expected type is Effect[PlayerCharacter] and therefore the type of T must be PlayerCharacter (or perhaps some wider type). If I just call "when" by itself, none of the examples I gave work. – Nimrand Oct 5 '11 at 11:57
Thanks for the clarification, I was a little worried. As a minor detail, not only the parameter list is used to infer the type argument: def appOn[A,B](a: A)(f: A => B) = f(a) is fine, you may write appOn(3)(_ + 1), and the B will be inferred from the second list. But the fact that A is Int, which is deduced from the first list, will not be available until the second list, where it is needed if we want the function argument type to be inferred – didierd Oct 5 '11 at 12:42
feedback

Your Answer

 
or
required, but never shown

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