mirror of
https://github.com/apple/pkl.git
synced 2026-03-22 09:09:15 +01:00
This changes code so that multiple lambda arguments makes the whole
argument list wrap.
Improves the readability of code like:
```
foo
.toMap(
(it) -> makeSomeKey(it),
(it) -> makeSomeValue(it)
)
```