From 6ed1d5a9b0723049a15dc7896e34e5cd650f62c7 Mon Sep 17 00:00:00 2001 From: HampusM Date: Wed, 15 Oct 2025 15:27:40 +0200 Subject: refactor(ecs): shorten insert_at_partition_point_by_key fn name --- ecs/src/util.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ecs/src/util.rs') diff --git a/ecs/src/util.rs b/ecs/src/util.rs index 2ab78cd..dc670e7 100644 --- a/ecs/src/util.rs +++ b/ecs/src/util.rs @@ -8,7 +8,7 @@ pub(crate) mod array_vec; pub trait VecExt { - fn insert_at_partition_point_by_key( + fn insert_at_part_pt_by_key( &mut self, item: Item, func: impl FnMut(&Item) -> Key, @@ -18,7 +18,7 @@ pub trait VecExt impl VecExt for Vec { - fn insert_at_partition_point_by_key( + fn insert_at_part_pt_by_key( &mut self, item: Item, mut func: impl FnMut(&Item) -> Key, -- cgit v1.2.3-18-g5258