mirror of
https://github.com/apple/pkl.git
synced 2026-05-21 22:36:57 +02:00
fbcf83aa76
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)
)
```