Operator Type:
Operator Scope of Action:
Operator Purpose:
Operator First Added:
Operator Altered:
Function [other Function type actions]
List [operators of similar scope]
Dictionary, Set & List operations [other Dictionary, Set & List operations operators]
9.0.0
List/Set[N]
Elements in lists, sets, may be extracted (referenced) with the bracket operator:
$MyList[1]
This has the same effect as List/Set.at( ), but may be more convenient. both
$MyList[1]
$MyList.at(1)
Returns the second list item (as list item addresses are zero-based).
This syntax can also assign values to specific elements of lists. For example,
$MyList="apple; pear; plum; cherry";
$MyList[1]="persimmon";
Will replace "pear" with "persimmon".