The jump table and default block as a single mutable slice. The default block will always be first.
(&mut self)
| 53 | /// The jump table and default block as a single mutable slice. The default block will always |
| 54 | /// be first. |
| 55 | pub fn all_branches_mut(&mut self) -> &mut [BlockCall] { |
| 56 | self.table.as_mut_slice() |
| 57 | } |
| 58 | |
| 59 | /// Access the jump table as a slice. This excludes the default block. |
| 60 | pub fn as_slice(&self) -> &[BlockCall] { |
no test coverage detected