Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

After having discovered that currying multi parameter-groups method is possible, I am trying to get a partially applied function which requires implicit parameters.

It seams not possible to do so. If not could you explain me why ?

scala> def sum(a: Int)(implicit b: Int): Int = { a+b }
sum: (a: Int)(implicit b: Int)Int

scala> sum(3)(4)
res12: Int = 7

scala> val partFunc2 = sum _
<console>:8: error: could not find implicit value for parameter b: Int
       val partFunc2 = sum _
                       ^

I use a singleton object to create this partially applied function and I want to use it in a scope where the implicit int is defined.

share|improve this question

1 Answer

up vote 4 down vote accepted

That is because you don't have an implicit Int in scope. See:

scala> def foo(x: Int)(implicit y: Int) = x + y
foo: (x: Int)(implicit y: Int)Int

scala> foo _
<console>:9: error: could not find implicit value for parameter y: Int
              foo _
              ^

scala> implicit val b = 2
b: Int = 2

scala> foo _
res1: Int => Int = <function1>

The implicit gets replaced with a real value by the compiler. If you curry the method the result is a function and functions can't have implicit parameters, so the compiler has to insert the value at the time you curry the method.

edit:

For your use case, why don't you try something like:

object Foo {
  def partialSum(implicit x: Int) = sum(3)(x)
}
share|improve this answer
Thanks. But as I said, I need to declare this function in another singleton object. I need to declare it out of the context where I use it. – kheraud Jun 4 '12 at 13:43
edited my post. I think there is no other way of doing this, for the reasons I already mentioned. – drexin Jun 4 '12 at 13:49
You are right. As currying gives Function and Function does not allow implicit params, I need to explictly list the params of one of the two groups. – kheraud Jun 4 '12 at 14:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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