diff options
author | HampusM <hampus@hampusmat.com> | 2025-04-04 17:47:53 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-04-04 17:47:53 +0200 |
commit | 523d13eec4778bb0d5e25416f09f2e5f7fc27ca7 (patch) | |
tree | 5b7f6d336c0a0ef171b058e5e28f655c92b9900a /ecs/src/util.rs | |
parent | ad2877956935375d74d0a0255dcf207c1673801c (diff) |
perf(ecs): always store query terms on stack
Diffstat (limited to 'ecs/src/util.rs')
-rw-r--r-- | ecs/src/util.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ecs/src/util.rs b/ecs/src/util.rs index 6f7aed7..eb06ab4 100644 --- a/ecs/src/util.rs +++ b/ecs/src/util.rs @@ -4,6 +4,8 @@ use std::ops::{BitAnd, Deref}; use hashbrown::HashMap; +pub mod array_vec; + pub trait VecExt<Item> { fn insert_at_partition_point_by_key<Key>( |