Scala Functional Literals with Implicits
问题 Forgive me if this has already been asked elsewhere. I have a Scala syntax question involving function-values and implicit parameters. I'm comfortable using implicits with Scala's currying feature. For instance if I had a sum function and wanted to make the second argument an implicit: scala> def sum(a: Int)(implicit b: Int) = a + b sum: (a: Int)(implicit b: Int)Int Is there a way to do this using the function-value syntax? Ignoring the implicit for a moment, I typically write curried