Manual: add set union and intersection operators in the macro-processor

time-shift
Sébastien Villemot 2020-02-14 17:15:47 +01:00
parent 71def361fb
commit 99d2b5ad39
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 2 additions and 0 deletions

View File

@ -10799,6 +10799,8 @@ The following operators can be used on arrays:
* Comparison operators: ``==, !=``
* Dereferencing: if ``v`` is an array, then ``v[2]`` is its 2nd element
* Concatenation of two arrays: ``+``
* Set union of two arrays: ``|``
* Set intersection of two arrays: ``&``
* Difference ``-``: returns the first operand from which the
elements of the second operand have been removed.
* Cartesian product of two arrays: ``*``