Iterate over mutable entries in the constant pool in insertion order.
(&mut self)
| 255 | |
| 256 | /// Iterate over mutable entries in the constant pool in insertion order. |
| 257 | pub fn entries_mut(&mut self) -> impl Iterator<Item = &mut ConstantData> { |
| 258 | self.handles_to_values.values_mut() |
| 259 | } |
| 260 | |
| 261 | /// Return the number of constants in the pool. |
| 262 | pub fn len(&self) -> usize { |
nothing calls this directly
no test coverage detected