diff --git a/src/protocol/arena.rs b/src/protocol/arena.rs index 86876643d3dd9c922c2fb748de5cc52403422e2f..21d3af16ee6ec5a2cdc65fe2bafd7f0019acba0e 100644 --- a/src/protocol/arena.rs +++ b/src/protocol/arena.rs @@ -52,6 +52,9 @@ impl Arena { pub fn iter(&self) -> impl Iterator { self.store.iter() } + pub fn iter_mut(&mut self) -> impl Iterator { + self.store.iter_mut() + } pub fn len(&self) -> usize { self.store.len() }