From a393be0d3d7b2c5769d1616256f8b5557f40891d Mon Sep 17 00:00:00 2001 From: Cameron Braid Date: Thu, 8 Jan 2026 22:15:11 +1100 Subject: [PATCH] remove #[must_use] from and_modify --- src/hash/map.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hash/map.rs b/src/hash/map.rs index d734dfb..2d49529 100644 --- a/src/hash/map.rs +++ b/src/hash/map.rs @@ -1596,7 +1596,6 @@ where /// Call the provided function to modify the value if the value /// exists. - #[must_use] pub fn and_modify(mut self, f: F) -> Self where F: FnOnce(&mut V),