which of these do you think is easier to read and ...
# announcements
h
which of these do you think is easier to read and understand?
[ bar for bar in foo if bar == 42 ]
or
foo.filter { it.bar == 42 }.map { it.bar }
?
2️⃣ 10
K 3