Small Rust question: I found that I need a structu...
# development
r
Small Rust question: I found that I need a structure that is not quite a vector, but is also not quite a map. Ideally it would be a
Vec<Option<T>>
, but I feel that that’s kind of a Map where the keys are indices and iteration order is deterministic.