Return the current `schema_hlc` for `array`, or `None` if unknown.
(&self, array: &str)
| 84 | |
| 85 | /// Return the current `schema_hlc` for `array`, or `None` if unknown. |
| 86 | pub fn schema_hlc(&self, array: &str) -> Option<Hlc> { |
| 87 | let docs = self.docs.lock().ok()?; |
| 88 | docs.get(array).map(|d| d.schema_hlc()) |
| 89 | } |
| 90 | |
| 91 | /// Return the `tile_extents` for `array`, or `None` if the array is not |
| 92 | /// registered or the schema cannot be decoded. |
no test coverage detected