Wasmtime: C++
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Classes | Public Member Functions | List of all members
wasmtime::TableType Class Reference

Type information about a WebAssembly table. More...

#include <wasmtime.hh>

Classes

class  Ref
 

Public Member Functions

 TableType (ValType ty, uint32_t min)
 
 TableType (ValType ty, uint32_t min, uint32_t max)
 
 TableType (Ref other)
 Clones the given reference into a new table type.
 
 TableType (const TableType &other)
 Copies another table type into this one.
 
TableTypeoperator= (const TableType &other)
 Copies another table type into this one.
 
 TableType (TableType &&other)=default
 Moves the table type resources from another type to this one.
 
TableTypeoperator= (TableType &&other)=default
 Moves the table type resources from another type to this one.
 
Refoperator-> ()
 Returns the underlying Ref, a non-owning reference pointing to this instance.
 
Refoperator* ()
 Returns the underlying Ref, a non-owning reference pointing to this instance.
 

Detailed Description

Type information about a WebAssembly table.

Constructor & Destructor Documentation

◆ TableType() [1/2]

wasmtime::TableType::TableType ( ValType  ty,
uint32_t  min 
)
inline

Creates a new table type from the specified value type and minimum size. The returned table will have no maximum size.

◆ TableType() [2/2]

wasmtime::TableType::TableType ( ValType  ty,
uint32_t  min,
uint32_t  max 
)
inline

Creates a new table type from the specified value type, minimum size, and maximum size.


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