mirror of
https://github.com/apple/pkl.git
synced 2026-05-25 16:19:20 +02:00
fdc501a35c
CLI commands also added: `pkl format check` and `pkl format apply`.
6 lines
162 B
Plaintext
Vendored
6 lines
162 B
Plaintext
Vendored
res = myList.map((it) -> it.partition).filter((it) -> someList.contains(it))
|
|
|
|
res2 = myList.map(lambda1).filter(lambda2)
|
|
|
|
res3 = myList.map((it) -> it.partition)
|