We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b0d3de commit 2ec07ceCopy full SHA for 2ec07ce
proposals/KEEP-0439-named-only-parameters.md
@@ -92,7 +92,7 @@ When the last function argument is of a functional type, it's also possible to u
92
When a function is called with multiple lambda arguments, the correspondence of arguments to parameters can also be ambiguous.
93
The most notable examples are:
94
95
-* `fun Result.process(onSuccess: () → Unit, onError: () → Unit)`
+* `fun Result.process(onSuccess: () -> Unit, onError: () -> Unit)`
96
* `fun <T, K, V> Array<out T>.groupBy(keySelector: (T) -> K, valueTransform: (T) -> V)`
97
* `fun <C> Either<C>.fold(ifLeft: (left: A) -> C, ifRight: (right: B) -> C): C`
98
0 commit comments