(&self, index: FuncIndex)
| 348 | /// Test whether the given function index is for an imported function. |
| 349 | #[inline] |
| 350 | pub fn is_imported_function(&self, index: FuncIndex) -> bool { |
| 351 | index.index() < self.num_imported_funcs |
| 352 | } |
| 353 | |
| 354 | /// Convert a `DefinedTableIndex` into a `TableIndex`. |
| 355 | #[inline] |
no test coverage detected