mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
Add a SmallVec data structure that saves a list on the stack
This commit is contained in:
parent
7a77702e78
commit
a003451c1f
5 changed files with 66 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue