|
@@ -274,16 +274,19 @@ The following is the list of supported operators and their precedence.
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|
|
| ``in`` | Inclusion checker (when used with |
|
|
| ``in`` | Inclusion checker (when used with |
|
|
| | control flow keywords or in a |
|
|
| | control flow keywords or in a |
|
|
-| | standalone expression). |
|
|
|
|
|
|
+| | standalone expression) |
|
|
| | |
|
|
| | |
|
|
| | Content iterator (when used with the |
|
|
| | Content iterator (when used with the |
|
|
-| | for_ keyword). |
|
|
|
|
|
|
+| | for_ keyword) |
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|
|
-| ``not`` | Boolean NOT |
|
|
|
|
|
|
+| ``not`` ``!`` | Boolean NOT and its |
|
|
|
|
+| | :ref:`aliases<boolean_operators>` |
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|
|
-| ``and`` | Boolean AND |
|
|
|
|
|
|
+| ``and`` ``&&`` | Boolean AND and its |
|
|
|
|
+| | :ref:`aliases<boolean_operators>` |
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|
|
-| ``or`` | Boolean OR |
|
|
|
|
|
|
+| ``or`` ``||`` | Boolean OR and its |
|
|
|
|
+| | :ref:`aliases<boolean_operators>` |
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|
|
| ``if x else`` | Ternary if/else |
|
|
| ``if x else`` | Ternary if/else |
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|
|
+--------------------------------------------------------------------------------+-------------------------------------------+
|