(&mut self)
| 75 | /// Returns an iterator that allows modifying each value, excluding the default block. |
| 76 | #[deprecated(since = "7.0.0", note = "please use `.as_mut_slice()` instead")] |
| 77 | pub fn iter_mut(&mut self) -> IterMut<'_, BlockCall> { |
| 78 | self.as_mut_slice().iter_mut() |
| 79 | } |
| 80 | |
| 81 | /// Clears all entries in this jump table, except for the default block. |
| 82 | pub fn clear(&mut self) { |
no test coverage detected