Some type of support for parallel insertion without having to Mutex the slotmap? Along the lines of
let keys = (0..100).into_par_iter().map(|i| {
sm.insert(MyStruct{id: i ...})
}).collect();
Sorry if this is a flawed idea. But HashMaps can be generated with a par iterator so it shouldn't be fundamentally impossible to have something like this?
Some type of support for parallel insertion without having to Mutex the slotmap? Along the lines of
Sorry if this is a flawed idea. But HashMaps can be generated with a par iterator so it shouldn't be fundamentally impossible to have something like this?