Add a SmallVec data structure that saves a list on the stack

This commit is contained in:
Ayaz Hafiz 2023-03-30 18:13:52 -05:00
parent 7a77702e78
commit a003451c1f
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
5 changed files with 66 additions and 0 deletions

View file

@ -6,6 +6,7 @@
pub mod all;
mod reference_matrix;
mod small_string_interner;
mod small_vec;
pub mod soa;
mod vec_map;
mod vec_set;
@ -13,5 +14,6 @@ mod vec_set;
pub use all::{default_hasher, BumpMap, ImEntry, ImMap, ImSet, MutMap, MutSet, SendMap};
pub use reference_matrix::{ReferenceMatrix, Sccs, TopologicalSort};
pub use small_string_interner::SmallStringInterner;
pub use small_vec::SmallVec;
pub use vec_map::VecMap;
pub use vec_set::VecSet;