Hello! I’m coming from the Rust programming language, where a crate called rayon is used quite a lot. It provides parallel iterators (which is the main thing I would like) and no data races (even though that shouldn’t have really been an issue).
I was wondering if someone knew how to do something similar like rayon in roblox? Potentially, something like:
for i,v in parpairs(table) do
end
If possible, I didn’t want to use manual actors, as I personally think the way they currently work is a bit clanky, and this would be extremely convenient. Thanks!
I’m not sure how exactly this is parallel. Does Roblox do automatic parallelization of iterators and events? Because what I was attempting to do was to get a Rayon like API in Roblox.