Open alkis opened 7 years ago
What do you think about a parallel library to this that requires the use of Slab(s) and uses usize as pointers to other nodes?
This eliminates the lifetime pollution when implementing with a Slab/Arena as backing store and makes the top level container much more ergonomic.
Have a look at the EntityMap used by cretonne: https://github.com/stoklund/cretonne/tree/master/lib/cretonne/src/entity
EntityMap
What do you think about a parallel library to this that requires the use of Slab(s) and uses usize as pointers to other nodes?
This eliminates the lifetime pollution when implementing with a Slab/Arena as backing store and makes the top level container much more ergonomic.