listTypeSpecifier

Specifies a list type with an element type parameter. The element type can be any valid type specifier.

Examples

List of strings

parameter "Names" List<String>

List of FHIR Conditions

define function "AllConditions"() returns List<Condition>:
  [Condition]

Nested list of integers

parameter "Matrix" List<List<Integer>>
Railroad Diagram
100%
List < typeSpecifier >

scroll to zoom · drag to pan · click green rules or blue tokens to navigate

EBNF

listTypeSpecifier
  : 'List' '<' typeSpecifier '>'
  ;

Used In