Here is a function with implicit parameters :
def maxF(implicit i1: Int, implicit i2: Int) = i1 + i2
How to obtain a partial applied function maxF _
. If you write val f = maxF _
, it complain error: could not find implicit value for parameter i1: Int
.
Any suggestiong ?