Table
zio.wasm.Table
final case class Table(tableType: TableType) extends Section[CoreIndexSpace]
The tables component of a module defines a vector of tables described by their table type:
A table is a vector of opaque values of a particular reference type. The size in the limits of the table type specifies the initial size of that table, while its max, if present, restricts the size to which it can grow later.
Tables can be initialized through element segments.
Tables are referenced through table indices, starting with the smallest index not referencing a table import. Most constructs implicitly reference table index 0.
Attributes
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait Section[CoreIndexSpace]class Objecttrait Matchableclass Any
Members list
In this article