I am sure there is a better way than cloning the vector over and over again
@akshay You will be surprised how easy this actually is in Rust (still needs to allocate a new vec, though):
results.into_iter().collect();
Playground (with some explanation):
https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=d24c9666675b953fe57f1f5f01d01618
I don't know Haskell, but maybe this is like `traverse` in Haskell (I've seen you've talked about it in your prev toots)!?
@janriemer This is great, thanks a lot