Class TupleType

Tuple type is a composite type that contains elements of different types.

Hierarchy

  • Type
    • TupleType

Constructors

  • Parameters

    • identifier: string
    • name: string
    • elementTypes: Type[]

    Returns TupleType

Accessors

  • get count(): number

    Get the size of the tuple.

    Returns number

    The number of elements in the tuple.

  • get elementTypes(): Type[]

    Get all element types of the tuple.

    Returns Type[]

    All element types of the tuple.

  • get identifier(): string

    The syntax component identifier, i.e. NumberType.

    Returns string

    The identifier.

  • get name(): string

    The lexeme name of the type, i.e. int, number, string.

    Returns string

    The name.

  • get supported(): boolean

    Whether this type is supported by the current implementation. Usually, only InvalidType | InvalidType should be marked as unsupported.

    Returns boolean

    Whether the type is supported.