Cody Mikol
04/27/2021, 5:47 PMlistOf(
{ foo() }
{ bar() }
{ baz() }
).parTraverseEither { it() }
carbaj0
04/27/2021, 5:58 PM.parTraverseEither { it() }
== .parSequenceEither()
CLOVIS
04/27/2021, 6:41 PMlistOf(::foo, ::bar, ::baz)
.parSequenceEither()
Depending on the exact signature of the functions, that could increase readabilityCody Mikol
04/28/2021, 12:17 AMCody Mikol
04/28/2021, 12:17 AM