Enum ValueKind
Represents the possible kinds of WebAssembly values.
Namespace: Wasmtime
Assembly: Wasmtime.Dotnet.dll
Syntax
public enum ValueKind : byte
Fields
Name | Description |
---|---|
ExternRef | The value is an external reference. |
Float32 | The value is a 32-bit floating point number. |
Float64 | The value is a 64-bit floating point number. |
FuncRef | The value is a function reference. |
Int32 | The value is a 32-bit integer. |
Int64 | The value is a 64-bit integer. |
V128 | The value is a 128-bit value representing the WebAssembly |