AsExternType converts this type to an instance of `ExternType`
()
| 100 | |
| 101 | // AsExternType converts this type to an instance of `ExternType` |
| 102 | func (ty *TableType) AsExternType() *ExternType { |
| 103 | ptr := C.wasm_tabletype_as_externtype_const(ty.ptr()) |
| 104 | return mkExternType(ptr, ty.owner()) |
| 105 | } |