Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

WebAssembly.Table.prototype.set()

BaselineWidely available

Theset() prototype method of theWebAssembly.Table object mutates a reference stored at a given index to a different value.

Syntax

js
set(index, value)

Parameters

index

The index of the function reference you want to mutate.

value

The value you want to mutate the reference to. This must be a value of the table's element type. Depending on the type, it may be anexported WebAssembly function, a JavaScript wrapper for an underlying Wasm function, or a host reference.

Return value

None (undefined).

Exceptions

Examples

Using Table.set

The following example (see table2.htmlsource code andlive version) creates a new WebAssembly Table instance with an initial size of two references. We then print out the table length and contents of the two indexes (retrieved viaTable.prototype.get()) to show that the length is two, and the indexes currently contain no function references (they currently returnnull).

js
const tbl = new WebAssembly.Table({ initial: 2, element: "anyfunc" });console.log(tbl.length);console.log(tbl.get(0));console.log(tbl.get(1));

We then create an import object that contains a reference to the table:

js
const importObj = {  js: { tbl },};

Finally, we load and instantiate a Wasm module (table2.wasm) usingWebAssembly.instantiateStreaming(), print the table length, and invoke the two referenced functions that are now stored in the table. Thetable2.wasm module adds two function references to the table, both of which print out a simple value (seetext representation:

js
WebAssembly.instantiateStreaming(fetch("table2.wasm"), importObject).then(  (obj) => {    console.log(tbl.length);    console.log(tbl.get(0)());    console.log(tbl.get(1)());  },);

Note how you've got to include a second function invocation operator at the end of the accessor to actually invoke the referenced function and log the value stored inside it (e.g.,get(0)() rather thanget(0)).

This example shows that we're creating and accessing the table from JavaScript, but the same table is visible and callable inside the Wasm instance, too.

Specifications

Specification
WebAssembly JavaScript Interface
# dom-table-set

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp