Combining Effect<A, E, R> into Effect<A[], E, R>: Best Approach?

if i have array/list/iterable of Effect<A, E, R> and I want get Effect<A[], E, R> whats the best way to do it? Just fold?
Was this page helpful?