(&self, id: &u32)
| 464 | |
| 465 | impl PlotMap { |
| 466 | pub fn get(&self, id: &u32) -> Option<&Plot> { |
| 467 | self.plots.get(id) |
| 468 | } |
| 469 | |
| 470 | pub fn get_mut(&mut self, id: &u32) -> Option<&mut Plot> { |
| 471 | self.plots.get_mut(id) |
no outgoing calls
no test coverage detected