diff options
author | HampusM <hampus@hampusmat.com> | 2025-02-09 18:41:26 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-02-09 18:41:26 +0100 |
commit | 2a8718f7c671ab1fc5e38340b467e2bd77f16cc0 (patch) | |
tree | 15d2eba5c57b484c89d3f5e11fe41deebbd1f92e /ecs/src/util.rs | |
parent | c06d59ffa09e22a98647f5104944e1c13b161963 (diff) |
perf(ecs): replace component::Sequence::into_vec fn with into_array
Diffstat (limited to 'ecs/src/util.rs')
-rw-r--r-- | ecs/src/util.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ecs/src/util.rs b/ecs/src/util.rs index 4ba8597..0273b18 100644 --- a/ecs/src/util.rs +++ b/ecs/src/util.rs @@ -4,6 +4,7 @@ pub trait Array<Item>: AsRef<[Item]> + AsMut<[Item]> + IntoIterator<Item = Item> + + Into<Vec<Item>> + Sortable<Item = Item> + sealed::Sealed { |