(&self, path: &Rc<Path>)
| 23 | } |
| 24 | |
| 25 | pub fn contains(&self, path: &Rc<Path>) -> bool { |
| 26 | self.value_map.contains_key(path) |
| 27 | } |
| 28 | |
| 29 | pub fn set(&mut self, path: Rc<Path>, value: PointerNullness) { |
| 30 | self.value_map.insert(path, value); |
no test coverage detected