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
{ ( k : String, v : Int) : Map.Entry<String, Int> -> "$k: $v"} is a J.Lambda. ( k : String, v : Int) : Map.Entry<String, Int> should be a J.Lambda.Parameters, my understanding is ( k : String, v : Int) can fit into a J.Lambda.Parameters with the following values
- 1. J.Lambda.Parameters#parenthesized = true
- 2. J.Lambda.Parameters#parameters (type : List<JRightPadded<J>>) is a list of J.VaraibleDeclarations, has two elements: k : String and v : Int.
However, I didn't find a proper place for Map.Entry<String, Int>.
The text was updated successfully, but these errors were encountered: