Get returns the underlying 64-bit float if this is an `f64`, or panics.
()
| 155 | |
| 156 | // Get returns the underlying 64-bit float if this is an `f64`, or panics. |
| 157 | func (v Val) Get() interface{} { |
| 158 | return v.val |
| 159 | } |
| 160 | |
| 161 | func (v Val) initialize(store Storelike, ptr *C.wasmtime_val_t) { |
| 162 | ptr.kind = v.kind |
no outgoing calls