This set of pages details the table instructions available in Wasm to create and manipulate tables.
Note: Equivalent functionality is available to JavaScript via the WebAssembly.Table API.
table.copyCopies references from one table location to another.
table.fillSets a range of table elements to the same value.
table.getRetrieves the reference stored at a particular table index.
table.growIncreases the size of the table by a specified number of elements.
table.initManually copies the references from a passive elem definition into a table.
table.setChanges the value stored in a particular table element.
table.sizeReturns the current size of the table.