WebIDLpedia

WebAssembly.Table interface

Definition

WebAssembly JavaScript Interface defines WebAssembly.Table



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

Methods and attributes that return objects implementing WebAssembly.Table