1
Fork 0

Add a usize-indexed append-only-vec

This commit is contained in:
Oli Scherer 2023-03-14 11:51:00 +00:00
parent c7a3a943f2
commit daee746771
4 changed files with 39 additions and 7 deletions

View file

@ -51,7 +51,7 @@ use std::panic::{catch_unwind, resume_unwind, AssertUnwindSafe};
pub use std::sync::atomic::Ordering;
pub use std::sync::atomic::Ordering::SeqCst;
pub use vec::AppendOnlyVec;
pub use vec::{AppendOnlyIndexVec, AppendOnlyVec};
mod vec;