[libcxx-commits] [PATCH] D129310: [libc++][doc] Extended integral type support
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jul 27 09:22:19 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG77ccf63ef0c4: [libc++][doc] Extended integral type support (authored by Mordante).
Changed prior to commit:
https://reviews.llvm.org/D129310?vs=445014&id=448071#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D129310/new/
https://reviews.llvm.org/D129310
Files:
libcxx/docs/UsingLibcxx.rst
Index: libcxx/docs/UsingLibcxx.rst
===================================================================
--- libcxx/docs/UsingLibcxx.rst
+++ libcxx/docs/UsingLibcxx.rst
@@ -444,3 +444,20 @@
undefined. As an extension, libc++ supports instantiating ``binomial_distribution``, ``discrete_distribution``,
``geometric_distribution``, ``negative_binomial_distribution``, ``poisson_distribution``, and ``uniform_int_distribution``
with ``int8_t``, ``__int128_t`` and their unsigned versions.
+
+Extended integral type support
+------------------------------
+
+Several platforms support the 128-bit integral types ``__int128_t`` and
+``__uint128_t``. When these types are present they can be used in the headers
+as required by the Standard:
+
+* ``<bits>``
+* ``<charconv>``
+* ``<functional>``
+* ``<type_traits>``
+
+As an extension these types can be used in the following headers:
+
+* ``<format>``
+* ``<random>``
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D129310.448071.patch
Type: text/x-patch
Size: 915 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220727/16cf94b8/attachment.bin>
More information about the libcxx-commits
mailing list