mirror of
https://github.com/apple/pkl.git
synced 2026-05-12 01:49:46 +02: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)
)
```