thomasnield
06/02/2018, 6:18 PMSequence
flatMap()
be bad for performance when you need to recurse a larger number of items (e.g. 1000, 10000)? Should I be doing a loop with tailrecur
instead?karelpeeters
06/02/2018, 6:49 PMflatMap
itself is not going to make things much worse, it's literally a for loop that combines lists.karelpeeters
06/02/2018, 6:51 PM