We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
foo(a, (b, c) -> d);
turns into:
foo(a,(b, c) -> d);
It's fine for the single-argument-case without parentheses (foo(a, b -> c); ). Surprised this hasn't come up before. :)
foo(a, b -> c);