Skip to content

Commit 2da1d6a

Browse files
committed
BigInt GA: remove mention of experimental status from .rst docs
1 parent 54e7db2 commit 2da1d6a

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

docs/codeql/ql-language-reference/modules.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -431,10 +431,7 @@ The above query therefore evalutes to:
431431
BigInt
432432
======
433433

434-
The built-in ``QlBuiltins`` module provides an **experimental** type ``BigInt`` of arbitrary-range integers.
435-
436-
This type is not available in the CodeQL CLI by default, but you can enable it by passing the ``--allow-experimental=bigint``
437-
option to the CodeQL CLI. Consequently, BigInts are currently disallowed in query results and dbscheme columns.
434+
The built-in ``QlBuiltins`` module provides a type ``BigInt`` of arbitrary-range integers.
438435

439436
Unlike ``int`` and ``float``, there is no automatic conversion between ``BigInt`` and other numeric types.
440437
Instead, big integers can be constructed using the ``.toBigInt()`` methods of ``int`` and ``string``.
@@ -451,3 +448,5 @@ The other built-in operations are:
451448
``rank``, ``unique``, ``any``.
452449
* other: ``.pow(int)``, ``.abs()``, ``.gcd(BigInt)``, ``.minimum(BigInt)``,
453450
``.maximum(BigInt)``.
451+
452+
Note: big integers are currently disallowed in query results and dbscheme columns.

docs/codeql/ql-language-reference/types.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ independent of the database that you are querying.
5252
QL has a range of built-in operations defined on primitive types. These are available by using dispatch on expressions of the appropriate type. For example, ``1.toString()`` is the string representation of the integer constant ``1``. For a full list of built-in operations available in QL, see the
5353
section on `built-ins <https://codeql.github.com/docs/ql-language-reference/ql-language-specification/#built-ins>`__ in the QL language specification.
5454

55-
Additionally, there is an experimental arbitrary-range integer primitive type at :ref:`QlBuiltins::BigInt <bigint>`. This type is not available in the CodeQL CLI by default, but you can enable it by passing the ``--allow-experimental=bigint`` option to the CodeQL CLI.
55+
Additionally, there is an arbitrary-range integer primitive type at :ref:`QlBuiltins::BigInt <bigint>`.
5656

5757
.. index:: class
5858
.. _classes:

0 commit comments

Comments
 (0)