WebIDLpedia

WebAssembly.Table interface

Definition

WebAssembly JavaScript Interface defines WebAssembly.Table



[LegacyNamespace=WebAssembly, Exposed=*]
interface Table {
  constructor(TableDescriptor descriptor, optional any value);
  AddressValue grow(AddressValue delta, optional any value);
  any get(AddressValue index);
  undefined set(AddressValue index, optional any value);
  readonly attribute AddressValue length;
};

Methods and attributes that return objects implementing WebAssembly.Table