From 99d2b5ad394b8cd53466a69cc0fa265b405ad80f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Fri, 14 Feb 2020 17:15:47 +0100 Subject: [PATCH] Manual: add set union and intersection operators in the macro-processor --- doc/manual/source/the-model-file.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/manual/source/the-model-file.rst b/doc/manual/source/the-model-file.rst index 3e9a9af49..ca323345f 100644 --- a/doc/manual/source/the-model-file.rst +++ b/doc/manual/source/the-model-file.rst @@ -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: ``*``