Join Slack
Powered by
<https://discuss.kotlinlang.org/t/why-does-is-this...
# arrow
s
stojan
08/19/2021, 6:28 AM
https://discuss.kotlinlang.org/t/why-does-is-this-code-executed-faster-in-a-thread-pool-with-1-thread-compared-to-one-with-more/22666/2
s
simon.vergauwen
08/19/2021, 3:17 PM
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
3
Views
Open in Slack
Previous
Next