ValF64 converts a go float64 to a f64 Val
(val float64)
| 31 | |
| 32 | // ValF64 converts a go float64 to a f64 Val |
| 33 | func ValF64(val float64) Val { |
| 34 | return Val{kind: C.WASMTIME_F64, val: val} |
| 35 | } |
| 36 | |
| 37 | // ValFuncref converts a Func to a funcref Val |
| 38 | // |
no outgoing calls
searching dependent graphs…