Using Chunks and Effect.all in Elm

I try to use Chunks instead of ReadonlyArrays when I can, because I think they are often faster. But, most of the time, I end up with a Chunk of Effects on which I need to apply an Effect.all. And that yields me an Effect of a ReadonlyArray whereas I would need an Effect of Chunk. So, in my code, Effect.all is almost always followed by Effect.map(Chunk.unsafeFromArray)). Is that the right way to proceed? Or is there a cleverer trick I am missing?
Was this page helpful?