Static Array Definition
Defining templatized static length array
Introduction
Templatized Static length Array can be similar to javascript syntax in square brackets
Syntax
[<array elements>]
Options
array elements
Static lenth array can contain any number of array elements separated by comma that can be defined as below
Syntax
<expression> | <object definition> | <static array definition> | <dynamic array definition>
Options
expression: Any valid Expressionobject definition: array element can be object as wellstatic array definition: array element can be defined as nested static array as welldynamic array definition: array element can be defined as Dynamic Array
Example Usage
[names.for(name)=>place.name,name_elemetns,["Arnavi","Aryavi","Atiksh"]]