Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac859d9 commit 4ebbd1fCopy full SHA for 4ebbd1f
1 file changed
docs/codeql/ql-language-reference/formulas.rst
@@ -133,13 +133,11 @@ A range check is a formula that looks like:
133
134
<expression> in <range>
135
136
-You can use a range check formula to check whether a numeric expression is in a given
+It holds if there is at least one value in ``<expression>`` that is also in the given
137
:ref:`range <ranges>`. For example, ``x in [2.1 .. 10.5]`` holds if the variable ``x`` is
138
between the values ``2.1`` and ``10.5`` (including ``2.1`` and ``10.5`` themselves).
139
140
Note that ``<expression> in <range>`` is equivalent to ``<expression> = <range>``.
141
-Both formulas check whether the set of values denoted by ``<expression>`` is the same as the
142
-set of values denoted by ``<range>``.
143
144
.. _calls:
145
0 commit comments