diff --git a/doc/manual/source/the-model-file.rst b/doc/manual/source/the-model-file.rst
index 3e9a9af496a60a5059bdfcfaee577056892df910..ca323345f05ec6128df6ca27126bcd5cd183de1b 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: ``*``