mirror of
https://github.com/apple/pkl.git
synced 2026-06-26 07:16:19 +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)
)
```