(&mut self, id: &ArrayId)
| 158 | } |
| 159 | |
| 160 | pub fn store_mut(&mut self, id: &ArrayId) -> ArrayEngineResult<&mut ArrayStore> { |
| 161 | self.arrays |
| 162 | .get_mut(id) |
| 163 | .ok_or_else(|| ArrayEngineError::UnknownArray(format!("{:?}", id))) |
| 164 | } |
| 165 | |
| 166 | /// Drop superseded tile-versions older than `cutoff_system_ms` for the |
| 167 | /// array named `array_id`. |
no test coverage detected