Upcast to anyref.
| 44 | |
| 45 | /// Upcast to anyref. |
| 46 | inline AnyRef ArrayRef::to_anyref() const { |
| 47 | wasmtime_anyref_t out; |
| 48 | wasmtime_arrayref_to_anyref(&raw, &out); |
| 49 | return AnyRef(out); |
| 50 | } |
| 51 | |
| 52 | /// Upcast to eqref. |
| 53 | inline EqRef ArrayRef::to_eqref() const { |
nothing calls this directly
no test coverage detected