Package com.dylibso.chicory.wasm.types
Class Table
- java.lang.Object
-
- com.dylibso.chicory.wasm.types.Table
-
public class Table extends Object
-
-
Constructor Summary
Constructors Constructor Description Table(ElementType elementType, Limits limits)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ElementTypeelementType()intgrow(int size, int value)Limitslimits()Valueref(int index)voidsetRef(int index, int value)intsize()
-
-
-
Constructor Detail
-
Table
public Table(ElementType elementType, Limits limits)
-
-
Method Detail
-
elementType
public ElementType elementType()
-
limits
public Limits limits()
-
size
public int size()
-
grow
public int grow(int size, int value)
-
ref
public Value ref(int index)
-
setRef
public void setRef(int index, int value)
-
-