+
Operator enabling you to add two lists and to return a third one. Adding two lists means concatenating the elements of the two lists and affecting the result to the returned list. The elements of the first list will be at the beginning of the resulting list. The order of the elements is kept. This operator works on list of objects (persistent or not) or on list of values (persistent or not). If the operation required is not feasible (for example, trying to fill a persistent list with a non persistent value), evaluation errors are raised. There is no simplification of the list (an element can be there twice after the operation).
ReturnType
List
Example
Let L1(List) Let L2(List) Let L3(List) L3=L2+L1