<https://discuss.kotlinlang.org/t/why-does-is-this...
# arrow
s
Ye, this is something that is often looked over. Small example:
(1..100).parTraverse { it + 1 }
is probably much slower than
(1..100).map { it + 1 }
👍 1