You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add syntactic sugar for polymorphic function values
Desugar the value
[T_1, ..., T_M] -> (x_1: P_1, ..., x_N: P_N) => body
Into
new scala.PolyFunction { def apply[T_1, ..., T_M](x_1: P_1, ..., x_N: P_N) = body }
0 commit comments