Removes all local indexes on the specified collection.
(&mut self, id: LocalId)
| 557 | |
| 558 | /// Removes all local indexes on the specified collection. |
| 559 | pub fn remove_local(&mut self, id: LocalId) { |
| 560 | self.local.remove(&id); |
| 561 | } |
| 562 | |
| 563 | pub fn get(&self, id: Id) -> Box<dyn Iterator<Item = &[MirScalarExpr]> + '_> { |
| 564 | match id { |
no test coverage detected