Adds a local index on the specified collection with the specified key.
(&mut self, id: LocalId, key: Vec<MirScalarExpr>)
| 552 | |
| 553 | /// Adds a local index on the specified collection with the specified key. |
| 554 | pub fn add_local(&mut self, id: LocalId, key: Vec<MirScalarExpr>) { |
| 555 | self.local.entry(id).or_default().push(key) |
| 556 | } |
| 557 | |
| 558 | /// Removes all local indexes on the specified collection. |
| 559 | pub fn remove_local(&mut self, id: LocalId) { |
no test coverage detected