Access the jump table as a mutable slice. This excludes the default block.
(&mut self)
| 63 | |
| 64 | /// Access the jump table as a mutable slice. This excludes the default block. |
| 65 | pub fn as_mut_slice(&mut self) -> &mut [BlockCall] { |
| 66 | &mut self.table.as_mut_slice()[1..] |
| 67 | } |
| 68 | |
| 69 | /// Returns an iterator to the jump table, excluding the default block. |
| 70 | #[deprecated(since = "7.0.0", note = "please use `.as_slice()` instead")] |
no outgoing calls
no test coverage detected