Hacker News new | ask | show | jobs
by insanitybit 1299 days ago
Interesting, I feel like "share vector across threads" is an area that rust excels in. There's `split_at_mut` and `rayon`, and now with GATs you should be able to create a lending iterator too.
1 comments

Hm interesting, I have to look into GATs then. Anyhow it also got easier with scoped threads. But doing it the old way was always a pain point for me.
Scoped threads definitely help, yeah. Before that you'd want to use a scoped thread crate or rayon.