Element returns the type of value stored in this table
()
| 71 | |
| 72 | // Element returns the type of value stored in this table |
| 73 | func (ty *TableType) Element() *ValType { |
| 74 | ptr := C.wasm_tabletype_element(ty.ptr()) |
| 75 | return mkValType(ptr, ty.owner()) |
| 76 | } |
| 77 | |
| 78 | // Minimum returns the minimum size, in elements, of this table. |
| 79 | func (ty *TableType) Minimum() uint32 { |