summaryrefslogtreecommitdiff
path: root/ecs/src/util.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2024-08-05 23:22:49 +0200
committerHampusM <hampus@hampusmat.com>2024-08-05 23:22:49 +0200
commita2eb0a235b738864a107eb9d859878c68f7d5bbf (patch)
tree893f2d0818b597d85b992746d54c81a233ac07c0 /ecs/src/util.rs
parenta83164950aedb40ab3f213d50a757ed07eabd7cc (diff)
fix(ecs): always sort components & component metadata
Diffstat (limited to 'ecs/src/util.rs')
-rw-r--r--ecs/src/util.rs48
1 files changed, 48 insertions, 0 deletions
diff --git a/ecs/src/util.rs b/ecs/src/util.rs
new file mode 100644
index 0000000..f4f8632
--- /dev/null
+++ b/ecs/src/util.rs
@@ -0,0 +1,48 @@
+pub trait Sortable
+{
+ type Item;
+
+ fn sort_by_key_b<Key, Func>(&mut self, func: Func)
+ where
+ Func: FnMut(&Self::Item) -> Key,
+ Key: Ord;
+}
+
+impl<Item> Sortable for [Item]
+{
+ type Item = Item;
+
+ fn sort_by_key_b<Key, Func>(&mut self, func: Func)
+ where
+ Func: FnMut(&Self::Item) -> Key,
+ Key: Ord,
+ {
+ self.sort_by_key(func)
+ }
+}
+
+impl<Item, const LENGTH: usize> Sortable for [Item; LENGTH]
+{
+ type Item = Item;
+
+ fn sort_by_key_b<Key, Func>(&mut self, func: Func)
+ where
+ Func: FnMut(&Self::Item) -> Key,
+ Key: Ord,
+ {
+ self.sort_by_key(func)
+ }
+}
+
+impl<Item> Sortable for Vec<Item>
+{
+ type Item = Item;
+
+ fn sort_by_key_b<Key, Func>(&mut self, func: Func)
+ where
+ Func: FnMut(&Self::Item) -> Key,
+ Key: Ord,
+ {
+ self.sort_by_key(func)
+ }
+}