A version of a WebAssembly Func
where the type signature of the function is statically known.
More...
#include <wasmtime.hh>
Public Member Functions | |
TrapResult< Results > | call (Store::Context cx, Params params) const |
Calls this function with the provided parameters. More... | |
const Func & | func () const |
Returns the underlying un-typed Func for this function. | |
A version of a WebAssembly Func
where the type signature of the function is statically known.
|
inline |
Calls this function with the provided parameters.
This function is akin to Func::call
except that since static type information is available it statically takes its parameters and statically returns its results.
Note that this function still may return a Trap
indicating that calling the WebAssembly function failed.