Converts this `ValType` into a string according to the string representation of `ValKind`.
()
| 73 | // Converts this `ValType` into a string according to the string representation |
| 74 | // of `ValKind`. |
| 75 | func (t *ValType) String() string { |
| 76 | return t.Kind().String() |
| 77 | } |
| 78 | |
| 79 | func (t *ValType) ptr() *C.wasm_valtype_t { |
| 80 | ret := t._ptr |