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>>
EBNF
listTypeSpecifier : 'List' '<' typeSpecifier '>' ;