Type Alias ArrayType

ArrayType: Message<"moddef.v1.ArrayType"> & {
    countRef?: PointRef;
    elementType?: ValueType;
    length: number;
}

§8.1 / §14.1 ARRAY logical type. Either a fixed length or a runtime count_ref (a register holding the live element count).

Type declaration

  • OptionalcountRef?: PointRef

    v0.4

    from field: moddef.v1.PointRef count_ref = 3;

  • OptionalelementType?: ValueType

    from field: moddef.v1.ValueType element_type = 1;

  • length: number

    from field: uint32 length = 2;

from message moddef.v1.ArrayType