Attila Domokos
04/08/2021, 1:53 PMparTupledN
and parMapN
has been moved and is now deprecated.
Is there documentation on how I could resolve this? Thank you!simon.vergauwen
04/08/2021, 2:01 PMparMapN
was renamed to parZip
and now includes CoroutineScope
as receiver in the lambdas.
And tupledN
was removed in Arrow Core to remove redundant aliases, so we followed the same in Arrow Fx Coroutines.
So you can refactor to parZip({ fa() }, { fb() }) { a, b -> Pair(a, b) }
.simon.vergauwen
04/08/2021, 2:02 PMAttila Domokos
04/08/2021, 2:03 PMparZip
. I'll check the release notes.Attila Domokos
04/08/2021, 3:30 PMparTupledN
calls with v0.11.0 and now with parZip
it's a lot cleaner! 🎉