Applying an effectful function to an array of items
I've got an array of items
T[] and want to apply an effectful function (item: T) => Effect<U, V> to each of those items and thus returning an Effect<U[], V>. What was the correct function to express that again?