(&self, store: &StoreOpaque)
| 560 | } |
| 561 | |
| 562 | pub(crate) fn _ty(&self, store: &StoreOpaque) -> Result<ArrayType> { |
| 563 | assert!(self.comes_from_same_store(store)); |
| 564 | let index = self.type_index(store)?; |
| 565 | Ok(ArrayType::from_shared_type_index(store.engine(), index)) |
| 566 | } |
| 567 | |
| 568 | /// Does this `arrayref` match the given type? |
| 569 | /// |
no test coverage detected