Wasmtime: C++
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Public Member Functions | List of all members
wasmtime::TypedFunc< Params, Results > Class Template Reference

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 Funcfunc () const
 Returns the underlying un-typed Func for this function.
 

Detailed Description

template<typename Params, typename Results>
class wasmtime::TypedFunc< Params, Results >

A version of a WebAssembly Func where the type signature of the function is statically known.

Member Function Documentation

◆ call()

template<typename Params , typename Results >
TrapResult< Results > wasmtime::TypedFunc< Params, Results >::call ( Store::Context  cx,
Params  params 
) const
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.


The documentation for this class was generated from the following file: