Uses of Class
com.dylibso.chicory.wasm.types.ValueType
-
Packages that use ValueType Package Description com.dylibso.chicory.wasm.types -
-
Uses of ValueType in com.dylibso.chicory.wasm.types
Methods in com.dylibso.chicory.wasm.types that return ValueType Modifier and Type Method Description static ValueTypeValueType. byId(long id)ValueTypeTableImport. entryType(){@return the table entry type}ValueType[]FunctionType. params()static ValueTypeValueType. refTypeForId(int id)ValueType[]FunctionType. returns()ValueTypeElement. type(){@return the type of the element values}ValueTypeGlobalImport. type(){@return the type of the value stored in the global}ValueTypeValue. type()static ValueTypeValueType. valueOf(String name)Returns the enum constant of this type with the specified name.static ValueType[]ValueType. values()Returns an array containing the constants of this enum type, in the order they are declared.ValueTypeGlobal. valueType()Methods in com.dylibso.chicory.wasm.types that return types with arguments of type ValueType Modifier and Type Method Description List<ValueType>FunctionBody. localTypes()Methods in com.dylibso.chicory.wasm.types with parameters of type ValueType Modifier and Type Method Description static ValueValue. zero(ValueType valueType)Create a zeroed value for the particular type.Constructors in com.dylibso.chicory.wasm.types with parameters of type ValueType Constructor Description ActiveElement(ValueType type, List<List<Instruction>> initializers, int tableIndex, List<Instruction> offset)Construct a new instance.DeclarativeElement(ValueType type, List<List<Instruction>> initializers)Construct a new instance.Element(ValueType type, List<List<Instruction>> initializers)Construct a new instance.FunctionType(ValueType[] params, ValueType[] returns)Global(ValueType valueType, MutabilityType mutabilityType, List<Instruction> init)GlobalImport(String moduleName, String name, MutabilityType mutabilityType, ValueType type)Construct a new instance.PassiveElement(ValueType type, List<List<Instruction>> initializers)Construct a new instance.TableImport(String moduleName, String name, ValueType entryType, Limits limits)Construct a new instance.Value(ValueType type, int value)Value(ValueType type, long value)Constructor parameters in com.dylibso.chicory.wasm.types with type arguments of type ValueType Constructor Description FunctionBody(List<ValueType> locals, List<Instruction> instructions)
-