1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219
|
# Modern C++ use in Chromium
_This document is part of the more general
[Chromium C++ style guide](https://chromium.googlesource.com/chromium/src/+/main/styleguide/c++/c++.md).
It summarizes the supported state of new and updated language and library
features in recent C++ standards and the [Abseil](https://abseil.io/about/)
library. This guide applies to both Chromium and its subprojects, though
subprojects can choose to be more restrictive if necessary for toolchain
support._
The C++ language has in recent years received an updated standard every three
years (C++11, C++14, etc.).
[For various reasons](https://chromium.googlesource.com/chromium/src/+/main/docs/process/c++_version_upgrades.md),
Chromium does not immediately allow new features on the publication of such a
standard. Instead, once Chromium supports the toolchain to a certain extent
(e.g., build support is ready), a standard is declared "_initially supported_",
with new language/library features banned pending discussion but not yet
allowed.
You can propose changing the status of a feature by sending an email to
[cxx@chromium.org](https://groups.google.com/a/chromium.org/forum/#!forum/cxx).
Include a short blurb on what the feature is and why you think it should or
should not be allowed, along with links to any relevant previous discussion. If
the list arrives at some consensus, send a codereview to change this file
accordingly, linking to your discussion thread.
If an item remains on the TBD list two years after initial support is added,
style arbiters should explicitly move it to an appropriate allowlist or
blocklist, allowing it if there are no obvious reasons to ban.
The current status of existing standards and Abseil features is:
* **C++11:** _Default allowed; see banned features below_
* **C++14:** _Default allowed_
* **C++17:** _Default allowed; see banned features below_
* **C++20:** _Initially supported November 13, 2023; see allowed/banned/TBD
features below_
* **C++23:** _Not yet supported_
* **Abseil:** _Default allowed; see banned features below_
## Banned features and third-party code
Third-party libraries may generally use banned features internally, although features
with poor compiler support or poor security properties may make the library
unsuitable to use with Chromium.
Chromium code that calls functions exported from a third-party library may use
banned library types that are required by the interface, as long as:
* The disallowed type is used only at the interface, and converted to and from
an equivalent allowed type as soon as practical on the Chromium side.
* The feature is not banned due to security issues or lack of compiler support.
If it is, discuss with
[cxx@chromium.org](https://groups.google.com/a/chromium.org/forum/#!forum/cxx)
to find a workaround.
[TOC]
## C++11 Banned Language Features {#core-blocklist-11}
The following C++11 language features are not allowed in the Chromium codebase.
### Inline Namespaces <sup>[banned]</sup>
```c++
inline namespace foo { ... }
```
**Description:** Allows better versioning of namespaces.
**Documentation:**
[Inline namespaces](https://en.cppreference.com/w/cpp/language/namespace#Inline_namespaces)
**Notes:**
*** promo
Banned in the
[Google Style Guide](https://google.github.io/styleguide/cppguide.html#Namespaces).
Unclear how it will work with components.
***
### long long Type <sup>[banned]</sup>
```c++
long long var = value;
```
**Description:** An integer of at least 64 bits.
**Documentation:**
[Fundamental types](https://en.cppreference.com/w/cpp/language/types)
**Notes:**
*** promo
Use a `<stdint.h>` type if you need a 64-bit number.
[Discussion thread](https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/RxugZ-pIDxk)
***
### User-Defined Literals <sup>[banned]</sup>
```c++
DistanceType var = 12_km;
```
**Description:** Allows user-defined literal expressions.
**Documentation:**
[User-defined literals](https://en.cppreference.com/w/cpp/language/user_literal)
**Notes:**
*** promo
Banned in the
[Google Style Guide](https://google.github.io/styleguide/cppguide.html#Operator_Overloading).
***
## C++11 Banned Library Features {#library-blocklist-11}
The following C++11 library features are not allowed in the Chromium codebase.
### <cctype>, <ctype.h>, <cwctype>, <wctype.h> <sup>[banned]</sup>
```c++
#include <cctype>
#include <cwctype>
#include <ctype.h>
#include <wctype.h>
```
**Description:** Provides utilities for ASCII characters.
**Documentation:**
[Standard library header `<cctype>`](https://en.cppreference.com/w/cpp/header/cctype),
[Standard library header `<cwctype>`](https://en.cppreference.com/w/cpp/header/cwctype)
**Notes:**
*** promo
Banned due to dependence on the C locale as well as UB when arguments don't fit
in an `unsigned char`/`wchar_t`. Use similarly-named replacements in
[third_party/abseil-cpp/absl/strings/ascii.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/strings/ascii.h)
instead.
***
### <cfenv>, <fenv.h> <sup>[banned]</sup>
```c++
#include <cfenv>
#include <fenv.h>
```
**Description:** Provides floating point status flags and control modes for
C-compatible code.
**Documentation:**
[Standard library header `<cfenv>`](https://en.cppreference.com/w/cpp/header/cfenv)
**Notes:**
*** promo
Banned by the
[Google Style Guide](https://google.github.io/styleguide/cppguide.html#C++11)
due to concerns about compiler support.
***
### <chrono> <sup>[banned]</sup>
```c++
#include <chrono>
```
**Description:** A standard date and time library.
**Documentation:**
[Date and time utilities](https://en.cppreference.com/w/cpp/chrono)
**Notes:**
*** promo
Overlaps with `base/time`.
***
### <exception> <sup>[banned]</sup>
```c++
#include <exception>
```
**Description:** Exception throwing and handling.
**Documentation:**
[Standard library header `<exception>`](https://en.cppreference.com/w/cpp/header/exception)
**Notes:**
*** promo
Exceptions are banned by the
[Google Style Guide](https://google.github.io/styleguide/cppguide.html#Exceptions)
and disabled in Chromium compiles. However, the `noexcept` specifier is
explicitly allowed.
[Discussion thread](https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/8i4tMqNpHhg)
***
### Engines And Generators From <random> <sup>[banned]</sup>
```c++
std::mt19937 generator;
```
**Description:** Methods of generating random numbers.
**Documentation:**
[Pseudo-random number generation](https://en.cppreference.com/w/cpp/numeric/random)
**Notes:**
*** promo
Do not use any random number engines or generators from `<random>`. Instead, use
`base::RandomBitGenerator`. (You may use the distributions from `<random>`.)
[Discussion thread](https://groups.google.com/a/chromium.org/forum/#!topic/cxx/16Xmw05C-Y0)
***
### <ratio> <sup>[banned]</sup>
```c++
#include <ratio>
```
**Description:** Provides compile-time rational numbers.
**Documentation:**
[`std::ratio`](https://en.cppreference.com/w/cpp/numeric/ratio/ratio)
**Notes:**
*** promo
Banned by the
[Google Style Guide](https://google.github.io/styleguide/cppguide.html#C++11)
due to concerns that this is tied to a more template-heavy interface style.
***
### <regex> <sup>[banned]</sup>
```c++
#include <regex>
```
**Description:** A standard regular expressions library.
**Documentation:**
[Regular expressions library](https://en.cppreference.com/w/cpp/regex)
**Notes:**
*** promo
Overlaps with many regular expression libraries in Chromium. When in doubt, use
`third_party/re2`.
***
### std::aligned_{storage,union} <sup>[banned]</sup>
```c++
std::aligned_storage<sizeof(T), alignof<T>>::type buf;
```
**Description:** Creates aligned, uninitialized storage to later hold one or
more objects.
**Documentation:**
[`std::aligned_storage`](https://en.cppreference.com/w/cpp/types/aligned_storage)
**Notes:**
*** promo
Deprecated in C++23. Generally, use `alignas(T) char buf[sizeof(T)];`. Aligned
unions can be handled similarly, using the max alignment and size of the union
members, either passed via a pack or computed inline.
***
### std::bind <sup>[banned]</sup>
```c++
auto x = std::bind(function, args, ...);
```
**Description:** Declares a function object bound to certain arguments.
**Documentation:**
[`std::bind`](https://en.cppreference.com/w/cpp/utility/functional/bind)
**Notes:**
*** promo
Use `base::Bind` instead. Compared to `std::bind`, `base::Bind` helps prevent
lifetime issues by preventing binding of capturing lambdas and by forcing
callers to declare raw pointers as `Unretained`.
[Discussion thread](https://groups.google.com/a/chromium.org/forum/#!topic/cxx/SoEj7oIDNuA)
***
### std::function <sup>[banned]</sup>
```c++
std::function x = [] { return 10; };
std::function y = std::bind(foo, args);
```
**Description:** Wraps a standard polymorphic function.
**Documentation:**
[`std::function`](https://en.cppreference.com/w/cpp/utility/functional/function)
**Notes:**
*** promo
Use `base::{Once,Repeating}Callback` or `base::FunctionRef` instead. Compared
to `std::function`, `base::{Once,Repeating}Callback` directly supports
Chromium's refcounting classes and weak pointers and deals with additional
thread safety concerns.
[Discussion thread](https://groups.google.com/a/chromium.org/forum/#!topic/cxx/SoEj7oIDNuA)
***
### std::shared_ptr <sup>[banned]</sup>
```c++
std::shared_ptr<int> x = std::make_shared<int>(10);
```
**Description:** Allows shared ownership of a pointer through reference counts.
**Documentation:**
[`std::shared_ptr`](https://en.cppreference.com/w/cpp/memory/shared_ptr)
**Notes:**
*** promo
Unlike `base::RefCounted`, uses extrinsic rather than intrinsic reference
counting. Could plausibly be used in Chromium, but would require significant
migration.
[Google Style Guide](https://google.github.io/styleguide/cppguide.html#Ownership_and_Smart_Pointers),
[Discussion thread](https://groups.google.com/a/chromium.org/forum/#!topic/cxx/aT2wsBLKvzI)
***
### std::{sto{i,l,ul,ll,ull,f,d,ld},to_string} <sup>[banned]</sup>
```c++
int x = std::stoi("10");
```
**Description:** Converts strings to/from numbers.
**Documentation:**
[`std::stoi`, `std::stol`, `std::stoll`](https://en.cppreference.com/w/cpp/string/basic_string/stol),
[`std::stoul`, `std::stoull`](https://en.cppreference.com/w/cpp/string/basic_string/stoul),
[`std::stof`, `std::stod`, `std::stold`](https://en.cppreference.com/w/cpp/string/basic_string/stof),
[`std::to_string`](https://en.cppreference.com/w/cpp/string/basic_string/to_string)
**Notes:**
*** promo
The string-to-number conversions rely on exceptions to communicate failure,
while the number-to-string conversions have performance concerns and depend on
the locale. Use `base/strings/string_number_conversions.h` instead.
***
### std::weak_ptr <sup>[banned]</sup>
```c++
std::weak_ptr<int> x = my_shared_x;
```
**Description:** Allows a weak reference to a `std::shared_ptr`.
**Documentation:**
[`std::weak_ptr`](https://en.cppreference.com/w/cpp/memory/weak_ptr)
**Notes:**
*** promo
Banned because `std::shared_ptr` is banned. Use `base::WeakPtr` instead.
***
### Thread Support Library <sup>[banned]</sup>
```c++
#include <barrier> // C++20
#include <condition_variable>
#include <future>
#include <latch> // C++20
#include <mutex>
#include <semaphore> // C++20
#include <stop_token> // C++20
#include <thread>
```
**Description:** Provides a standard multithreading library using `std::thread`
and associates
**Documentation:**
[Thread support library](https://en.cppreference.com/w/cpp/thread)
**Notes:**
*** promo
Overlaps with `base/synchronization`. `base::Thread` is tightly coupled to
`base::MessageLoop` which would make it hard to replace. We should investigate
using standard mutexes, or `std::unique_lock`, etc. to replace our
locking/synchronization classes.
***
## C++17 Banned Language Features {#core-blocklist-17}
The following C++17 language features are not allowed in the Chromium codebase.
### UTF-8 character literals <sup>[banned]</sup>
```c++
char x = u8'x'; // C++17
char8_t x = u8'x'; // C++20
```
**Description:** A character literal that begins with `u8` is a character
literal of type `char` (C++17) or `char8_t` (C++20). The value of a UTF-8
character literal is equal to its ISO 10646 code point value.
**Documentation:**
[Character literal](https://en.cppreference.com/w/cpp/language/character_literal)
**Notes:**
*** promo
Banned because `char8_t` is banned. Use an unprefixed character or string
literal; it should be encoded in the binary as UTF-8 on all supported platforms.
***
## C++17 Banned Library Features {#library-blocklist-17}
The following C++17 library features are not allowed in the Chromium codebase.
### Mathematical special functions <sup>[banned]</sup>
```c++
std::assoc_laguerre()
std::assoc_legendre()
std::beta()
std::comp_ellint_1()
std::comp_ellint_2()
std::comp_ellint_3()
std::cyl_bessel_i()
std::cyl_bessel_j()
std::cyl_bessel_k()
std::cyl_neumann()
std::ellint_1()
std::ellint_2()
std::ellint_3()
std::expint()
std::hermite()
std::legendre()
std::laguerre()
std::riemann_zeta()
std::sph_bessel()
std::sph_legendre()
std::sph_neumann()
```
**Description:** A variety of mathematical functions.
**Documentation:**
[Mathematical special functions](https://en.cppreference.com/w/cpp/numeric/special_functions)
**Notes:**
*** promo
Banned due to
[lack of libc++ support](https://libcxx.llvm.org/Status/Cxx17.html).
***
### Parallel algorithms <sup>[banned]</sup>
```c++
auto it = std::find(std::execution::par, std::begin(vec), std::end(vec), 2);
```
**Description:** Many of the STL algorithms, such as the `copy`, `find` and
`sort` methods, now support the parallel execution policies: `seq`, `par`, and
`par_unseq` which translate to "sequentially", "parallel" and
"parallel unsequenced".
**Documentation:**
[`std::execution::sequenced_policy`, `std::execution::parallel_policy`, `std::execution::parallel_unsequenced_policy`, `std::execution::unsequenced_policy`](https://en.cppreference.com/w/cpp/algorithm/execution_policy_tag_t)
**Notes:**
*** promo
Banned because
[libc++ support is incomplete](https://libcxx.llvm.org/Status/PSTL.html) and the
interaction of its threading implementation with Chrome's is unclear. Prefer to
explicitly parallelize long-running algorithms using Chrome's threading APIs, so
the same scheduler controls, shutdown policies, tracing, etc. apply as in any
other multithreaded code.
***
### std::aligned_alloc <sup>[banned]</sup>
```c++
int* p2 = static_cast<int*>(std::aligned_alloc(1024, 1024));
```
**Description:** Allocates uninitialized storage with the specified alignment.
**Documentation:**
[`std::aligned_alloc`](https://en.cppreference.com/w/cpp/memory/c/aligned_alloc)
**Notes:**
*** promo
[Will be allowed soon](https://crbug.com/1412818); for now, use
`base::AlignedAlloc`.
***
### std::any <sup>[banned]</sup>
```c++
std::any x = 5;
```
**Description:** A type-safe container for single values of any type.
**Documentation:**
[`std::any`](https://en.cppreference.com/w/cpp/utility/any)
**Notes:**
*** promo
Banned since workaround for lack of RTTI
[isn't compatible with the component build](https://crbug.com/1096380). See also
`absl::any`.
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/00cpZ07nye4)
***
### std::byte <sup>[banned]</sup>
```c++
std::byte b = 0xFF;
int i = std::to_integer<int>(b); // 0xFF
```
**Description:** The contents of a single memory unit. `std::byte` has the same
size and aliasing rules as `unsigned char`, but does not semantically represent
a character or arithmetic value, and does not expose operators other than
bitwise ops.
**Documentation:**
[`std::byte`](https://en.cppreference.com/w/cpp/types/byte)
**Notes:**
*** promo
Banned due to low marginal utility in practice, high conversion costs, and
programmer confusion about "byte" vs. "octet". Use `uint8_t` for the common case
of "8-bit unsigned value", and `char` for the atypical case of code that works
with memory without regard to its contents' values or semantics (e.g allocator
implementations).
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/bBY0gZa1Otk)
***
### std::filesystem <sup>[banned]</sup>
```c++
#include <filesystem>
```
**Description:** A standard way to manipulate files, directories, and paths in a
filesystem.
**Documentation:**
[Filesystem library](https://en.cppreference.com/w/cpp/filesystem)
**Notes:**
*** promo
Banned by the [Google Style Guide](https://google.github.io/styleguide/cppguide.html#Other_Features).
***
### std::{from,to}_chars <sup>[banned]</sup>
```c++
std::from_chars(str.data(), str.data() + str.size(), result);
std::to_chars(str.data(), str.data() + str.size(), 42);
```
**Description:** Locale-independent, non-allocating, non-throwing functions to
convert values from/to character strings, designed for use in high-throughput
contexts.
**Documentation:**
[`std::from_chars`](https://en.cppreference.com/w/cpp/utility/from_chars)
[`std::to_chars`](https://en.cppreference.com/w/cpp/utility/to_chars),
**Notes:**
*** promo
Overlaps with utilities in `base/strings/string_number_conversions.h`, which are
easier to use correctly.
***
### std::{pmr::memory_resource,polymorphic_allocator} <sup>[banned]</sup>
```c++
#include <memory_resource>
```
**Description:** Manages memory allocations using runtime polymorphism.
**Documentation:**
[`std::pmr::memory_resource`](https://en.cppreference.com/w/cpp/memory/memory_resource),
[`std::pmr::polymorphic_allocator`](https://en.cppreference.com/w/cpp/memory/polymorphic_allocator)
**Notes:**
*** promo
Banned because Chromium does not customize allocators
([PartitionAlloc](https://chromium.googlesource.com/chromium/src/+/main/base/allocator/partition_allocator/PartitionAlloc.md)
is used globally).
***
### std::timespec_get <sup>[banned]</sup>
```c++
std::timespec ts;
std::timespec_get(&ts, TIME_UTC);
```
**Description:** Gets the current calendar time in the given time base.
**Documentation:**
[`std::timespec_get`](https://en.cppreference.com/w/cpp/chrono/c/timespec_get)
**Notes:**
*** promo
Banned due to unclear, implementation-defined behavior. On POSIX, use
`base::TimeDelta::ToTimeSpec()`; this could be supported on other platforms if
desirable.
***
### std::uncaught_exceptions <sup>[banned]</sup>
```c++
int count = std::uncaught_exceptions();
```
**Description:** Determines whether there are live exception objects.
**Documentation:**
[`std::uncaught_exceptions`](https://en.cppreference.com/w/cpp/error/uncaught_exception)
**Notes:**
*** promo
Banned because exceptions are banned.
***
### Transparent std::owner_less <sup>[banned]</sup>
```c++
std::map<std::weak_ptr<T>, U, std::owner_less<>>
```
**Description:** Function object providing mixed-type owner-based ordering of
shared and weak pointers, regardless of the type of the pointee.
**Documentation:**
[`std::owner_less`](https://en.cppreference.com/w/cpp/memory/owner_less)
**Notes:**
*** promo
Banned since `std::shared_ptr` and `std::weak_ptr` are banned.
***
### weak_from_this <sup>[banned]</sup>
```c++
auto weak_ptr = weak_from_this();
```
**Description:** Returns a `std::weak_ptr<T>` that tracks ownership of `*this`
by all existing `std::shared_ptr`s that refer to `*this`.
**Documentation:**
[`std::enable_shared_from_this<T>::weak_from_this`](https://en.cppreference.com/w/cpp/memory/enable_shared_from_this/weak_from_this)
**Notes:**
*** promo
Banned since `std::shared_ptr` and `std::weak_ptr` are banned.
***
## C++20 Allowed Language Features {#core-allowlist-20}
The following C++20 language features are allowed in the Chromium codebase.
### Abbreviated function templates <sup>[allowed]</sup>
```c++
// template <typename T>
// void f1(T x);
void f1(auto x);
// template <C T> // `C` is a concept
// void f2(T x);
void f2(C auto x);
// template <typename T, C U> // `C` is a concept
// void f3(T x, U y);
template <typename T>
void f3(T x, C auto y);
// template<typename... Ts>
// void f4(Ts... xs);
void f4(auto... xs);
```
**Description:** Function params of type `auto` become syntactic sugar for
declaring a template type for each such parameter.
**Documentation:**
[Abbreviated function template](https://en.cppreference.com/w/cpp/language/function_template#Abbreviated_function_template)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414526)
***
### consteval <sup>[allowed]</sup>
```c++
consteval int sqr(int n) { return n * n; }
constexpr int kHundred = sqr(10); // OK
constexpr int quad(int n) { return sqr(sqr(n)); } // ERROR, might be runtime
```
**Description:** Specified that a function may only be used in a compile-time
context.
**Documentation:**
[`consteval` specifier](https://en.cppreference.com/w/cpp/language/consteval)
**Notes:**
*** promo
None
***
### Constraints and concepts <sup>[allowed]</sup>
```c++
// `Hashable` is a concept satisfied by any type `T` for which the expression
// `std::hash<T>{}(a)` compiles and produces a value convertible to `size_t`.
template<typename T>
concept Hashable = requires(T a)
{
{ std::hash<T>{}(a) } -> std::convertible_to<size_t>;
};
template <Hashable T> // Only instantiable for `T`s that satisfy `Hashable`.
void f(T) { ... }
```
**Description:** Allows bundling sets of requirements together as named
concepts, then enforcing them on template arguments.
**Documentation:**
[Constraints and concepts](https://en.cppreference.com/w/cpp/language/constraints)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414528)
***
### Default comparisons <sup>[allowed]</sup>
```c++
class S : public T {
// Non-member equality operator with access to private members.
// Compares `T` bases, then `x`, then `y`, short-circuiting when
// it finds inequality.
friend bool operator==(const S&, const S&) = default;
// Non-member ordering operator with access to private members.
// Compares `T` bases, then `x`, then `y`, short-circuiting when
// it finds an ordering difference.
friend auto operator<=>(const S&, const S&) = default;
int x;
bool y;
};
```
**Description:** Requests that the compiler generate the implementation of
any comparison operator, including `<=>`. Prefer non-member comparison
operators. When defaulting `<=>`, also explicitly default `==`. Together these
are sufficient to allow any comparison as long as callers do not need to take
the address of any non-declared operator.
**Documentation:**
[Default comparisons](https://en.cppreference.com/w/cpp/language/default_comparisons)
**Notes:**
*** promo
Unlike constructors/destructors, our compiler extensions do not require these
to be written out-of-line in the .cc file. Feel free to write `= default`
directly in the header, as this is much simpler to write.
- [Migration bug](https://crbug.com/1414530)
- [Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/h4lVi2jHU-0/m/X0q_Bh2IAAAJ)
***
### Designated initializers <sup>[allowed]</sup>
```c++
struct S { int x = 1; int y = 2; }
S s{ .y = 3 }; // OK, s.x == 1, s.y == 3
```
**Description:** Allows explicit initialization of subsets of aggregate members
at construction.
**Documentation:**
[Designated initializers](https://en.cppreference.com/w/cpp/language/aggregate_initialization#Designated_initializers)
**Notes:**
*** promo
None
***
### __has_cpp_attribute <sup>[allowed]</sup>
```c++
#if __has_cpp_attribute(assume) // Toolchain supports C++23 `[[assume]]`.
...
#endif
```
**Description:** Checks whether the toolchain supports a particular standard
attribute.
**Documentation:**
[Feature testing](https://en.cppreference.com/w/cpp/feature_test)
**Notes:**
*** promo
None
***
### constinit <sup>[allowed]</sup>
```c++
constinit int x = 3;
void foo() {
++x;
}
```
**Description:** Ensures that a variable can be compile-time initialized. This
is like a milder form of `constexpr` that does not force variables to be const
or have constant destruction.
**Documentation:**
[`constinit` specifier](https://en.cppreference.com/w/cpp/language/constinit)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414612)
***
### Initializers for bit-field members <sup>[allowed]</sup>
```c++
struct S {
uint32_t x : 27 = 2;
};
```
**Description:** Allows specifying the default initial value of a bit-field
member, as can already be done for other member types.
**Documentation:**
[Bit-field](https://en.cppreference.com/w/cpp/language/bit_field)
**Notes:**
*** promo
None
***
### Lambda captures with initializers that are pack expansions <sup>[allowed]</sup>
```c++
template <typename... Args>
void foo(Args... args) {
const auto l = [...n = args] { (x(n), ...); };
}
```
**Description:** Allows initializing a capture with a pack expansion.
**Documentation:**
[Lambda capture](https://en.cppreference.com/w/cpp/language/lambda#Lambda_capture)
**Notes:**
*** promo
None
***
### Language feature-test macros <sup>[allowed]</sup>
```c++
#if !defined(__cpp_modules) || (__cpp_modules < 201907L)
... // Toolchain does not support modules
#endif
```
**Description:** Provides a standardized way to test the toolchain's
implementation of a particular language feature.
**Documentation:**
[Feature testing](https://en.cppreference.com/w/cpp/feature_test)
**Notes:**
*** promo
None
***
### [[likely]], [[unlikely]] <sup>[allowed]</sup>
```c++
if (n > 0) [[likely]] {
return 1;
}
```
**Description:** Tells the optimizer that a particular codepath is more or less
likely than an alternative.
**Documentation:**
[C++ attribute: `likely`, `unlikely`](https://en.cppreference.com/w/cpp/language/attributes/likely)
**Notes:**
*** promo
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/bk9YC5qSDF8)
***
### Range-for statements with initializer <sup>[allowed]</sup>
```c++
T foo();
...
for (auto& x : foo().items()) { ... } // UAF before C++23!
for (T thing = foo(); auto& x : thing.items()) { ... } // OK
```
**Description:** Like C++17's selection statements with initializer.
Particularly useful before C++23, since temporaries inside range-expressions are
not lifetime-extended until the end of the loop before C++23.
**Documentation:**
[Range-based `for` loop](https://en.cppreference.com/w/cpp/language/range-for)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414531)
***
### Three-way comparison ("spaceship") operator <sup>[allowed]</sup>
```c++
// `ordering` is an instance of `std::strong_odering` or `std::partial_ordering`
// that describes how `a` and `b` are related.
const auto ordering = a <=> b;
if (ordering < 0) { ... } // `a` < `b`
else if (ordering > 0) { ... } // `a` > `b`
else { ... } // `a` == `b`
```
**Description:** Compares two objects in a fashion similar to `strcmp`. Perhaps
most useful when defined as an overload in a class, in which case it can replace
definitions of other inequalities. See also "Default comparisons".
**Documentation:**
[Three-way comparison](https://en.cppreference.com/w/cpp/language/operator_comparison#Three-way_comparison)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414530)
***
### using enum declarations <sup>[allowed]</sup>
```c++
enum class E { kA = 1 };
void f() {
using enum E;
auto a = kA;
}
```
**Description:** Introduces enumerator element names into the current scope.
**Documentation:**
[`using enum` declaration](https://en.cppreference.com/w/cpp/language/enum#using_enum_declaration)
**Notes:**
*** promo
Usage is subject to the Google Style
[guidelines on aliases](https://google.github.io/styleguide/cppguide.html#Aliases).
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/Y0lf-DSOR3A)
***
## C++20 Allowed Library Features {#library-allowlist-20}
The following C++20 library features are allowed in the Chromium codebase.
### <bit> <sup>[allowed]</sup>
```c++
#include <bit>
```
**Description:** Provides various byte- and bit-twiddling functions, e.g.
counting leading zeros.
**Documentation:**
[Standard library header `<bit>`](https://en.cppreference.com/w/cpp/header/bit)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414634)
***
### <compare> <sup>[allowed]</sup>
```c++
#include <compare>
```
**Description:** Concepts and classes used to implement three-way comparison
("spaceship", `<=>`) support.
**Documentation:**
[Standard library header `<compare>`](https://en.cppreference.com/w/cpp/header/compare)
**Notes:**
*** promo
None
***
### <concepts> <sup>[allowed]</sup>
```c++
#include <concepts>
```
**Description:** Various useful concepts, many of which replace pre-concept
machinery in `<type_traits>`.
**Documentation:**
[Standard library header `<concepts>`](https://en.cppreference.com/w/cpp/header/concepts)
**Notes:**
*** promo
None
***
### Range algorithms <sup>[allowed]</sup>
```c++
constexpr int kArr[] = {2, 4, 6, 8, 10, 12};
constexpr auto is_even = [] (auto x) { return x % 2 == 0; };
static_assert(std::ranges::all_of(kArr, is_even));
```
**Description:** Provides versions of most algorithms that accept either an
iterator-sentinel pair or a single range argument.
**Documentation:**
[Ranges algorithms](https://en.cppreference.com/w/cpp/algorithm/ranges)
**Notes:**
*** promo
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/ZnIbkfJ0Glw)
***
### Range access, range primitives, dangling iterator handling, and range concepts <sup>[allowed]</sup>
```c++
// Range access:
constexpr int kArr[] = {2, 4, 6, 8, 10, 12};
static_assert(std::ranges::size(kArr) == 6);
// Range primitives:
static_assert(
std::same_as<std::ranges::iterator_t<decltype(kArr)>, const int*>);
// Range concepts:
static_assert(std::ranges::contiguous_range<decltype(kArr)>);
```
**Description:** Various helper functions and types for working with ranges.
**Documentation:**
[Ranges library](https://en.cppreference.com/w/cpp/ranges)
**Notes:**
*** promo
Supersedes `//base`'s backports in `//base//ranges/ranges.h`.
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/ZnIbkfJ0Glw)
***
### Library feature-test macros and <version> <sup>[allowed]</sup>
```c++
#if !defined(__cpp_lib_atomic_value_initialization) || \
(__cpp_lib_atomic_value_initialization < 201911L)
... // `std::atomic` is not value-initialized by default.
#endif
```
**Description:** Provides a standardized way to test the toolchain's
implementation of a particular library feature.
**Documentation:**
[Feature testing](https://en.cppreference.com/w/cpp/feature_test)
**Notes:**
*** promo
None
***
### <numbers> <sup>[allowed]</sup>
```c++
#include <numbers>
```
**Description:** Provides compile-time constants for many common mathematical
values, e.g. pi and e.
**Documentation:**
[Mathematical constants](https://en.cppreference.com/w/cpp/numeric/constants)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414635)
***
### std::assume_aligned <sup>[allowed]</sup>
```c++
void f(int* p) {
int* aligned = std::assume_aligned<256>(p);
...
```
**Description:** Informs the compiler that a pointer points to an address
aligned to at least some particular power of 2.
**Documentation:**
[`std::assume_aligned`](https://en.cppreference.com/w/cpp/memory/assume_aligned)
**Notes:**
*** promo
None
***
### std::erase[_if] for containers <sup>[allowed]</sup>
```c++
std::vector<int> numbers = ...;
std::erase_if(numbers, [](int x) { return x % 2 == 0; });
```
**Description:** Erases from a container by value comparison or predicate,
avoiding the need to use the `erase(remove(...` paradigm.
**Documentation:**
[`std::erase`, `std::erase_if` (`std::vector`)](https://en.cppreference.com/w/cpp/container/vector/erase2)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414639)
***
### std::hardware_{con,de}structive_interference_size <sup>[allowed]</sup>
```c++
struct SharedData {
ReadOnlyFrequentlyUsed data;
alignas(std::hardware_destructive_interference_size) std::atomic<size_t> counter;
};
```
**Description:** The `std::hardware_destructive_interference_size` constant is
useful to avoid false sharing (destructive interference) between variables that
would otherwise occupy the same cacheline. In contrast,
`std::hardware_constructive_interference_size` is helpful to promote true
sharing (constructive interference), e.g. to support better locality for
non-contended data.
**Documentation:**
[`std::hardware_destructive_interference_size`](https://en.cppreference.com/w/cpp/thread/hardware_destructive_interference_size),
[`std::hardware_constructive_interference_size`](https://en.cppreference.com/w/cpp/thread/hardware_destructive_interference_size)
**Notes:**
*** promo
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/cwktrFxxUY4)
***
### std::is_[un]bounded_array <sup>[allowed]</sup>
```c++
template <typename T>
static constexpr bool kBoundedArray = std::is_bounded_array_v<T>;
```
**Description:** Checks if a type is an array type with a known or unknown
bound.
**Documentation:**
[`std::is_bounded_array`](https://en.cppreference.com/w/cpp/types/is_bounded_array),
[`std::is_unbounded_array`](https://en.cppreference.com/w/cpp/types/is_unbounded_array)
**Notes:**
*** promo
None
***
### std::lerp <sup>[allowed]</sup>
```c++
double val = std::lerp(start, end, t);
```
**Description:** Linearly interpolates (or extrapolates) between two values.
**Documentation:**
[`std::lerp`](https://en.cppreference.com/w/cpp/numeric/lerp)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414537)
***
### std::make_obj_using_allocator etc. <sup>[allowed]</sup>
```c++
auto obj = std::make_obj_using_allocator<Obj>(alloc, ...);
```
**Description:** Constructs an object using
[uses-allocator construction](https://en.cppreference.com/w/cpp/memory/uses_allocator).
**Documentation:**
[`std::make_obj_using_allocator`](https://en.cppreference.com/w/cpp/memory/make_obj_using_allocator)
**Notes:**
*** promo
None
***
### std::make_unique_for_overwrite <sup>[allowed]</sup>
```c++
auto ptr = std::make_unique_for_overwrite<int>(); // `*ptr` is uninitialized
```
**Description:** Like calling `std::unique_ptr<T>(new T)` instead of the more
typical `std::unique_ptr<T>(new T(...))`.
**Documentation:**
[`std::make_unique`, `std::make_unique_for_overwrite`](https://en.cppreference.com/w/cpp/memory/unique_ptr/make_unique)
**Notes:**
*** promo
None
***
### std::midpoint <sup>[allowed]</sup>
```c++
int center = std::midpoint(top, bottom);
```
**Description:** Finds the midpoint between its two arguments, avoiding any
possible overflow. For integral inputs, rounds towards the first argument.
**Documentation:**
[`std::midpoint`](https://en.cppreference.com/w/cpp/numeric/midpoint)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414539)
***
### std::ranges::subrange <sup>[allowed]</sup>
```c++
void transform(const std::multimap<int, char>& map, int key) {
auto [first, last] = map.equal_range(key);
for (const auto& [_, value] : std::ranges::subrange(first, last)) {
...
```
**Description:** Creates a view from an iterator and a sentinel. Useful for
treating non-contiguous storage (e.g. a `std::map`) as a range.
**Documentation:**
[`std::ranges::subrange`](https://en.cppreference.com/w/cpp/ranges/subrange)
**Notes:**
*** promo
Prefer `base::span` if working with explicitly contiguous data, such as in a
`std::vector`. Use `std::ranges::subrange` when data is non-contiguous, or when
it's an implementation detail that the data is contiguous (e.g.
`base::flat_map`).
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/5VeU5GkPUYI)
***
### std::remove_cvref[_t] <sup>[allowed]</sup>
```c++
template <typename T>
requires (std::is_same_v<std::remove_cvref_t<T>, int>)
void foo(T t);
```
**Description:** Provides a way to remove const, volatile, and reference
qualifiers from a type.
**Documentation:**
[`std::remove_cvref`](https://en.cppreference.com/w/cpp/types/remove_cvref)
**Notes:**
*** promo
None
***
### std::ssize <sup>[allowed]</sup>
```c++
str.replace(it, it + std::ssize(substr), 1, 'x');
```
**Description:** Returns the size of an object as a signed type.
**Documentation:**
[`std::size`, `std::ssize`](https://en.cppreference.com/w/cpp/iterator/size)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414543)
***
### std::string::(starts,ends)_with <sup>[allowed]</sup>
```c++
const std::string str = "Foo bar";
const bool is_true = str.ends_with("bar");
```
**Description:** Tests whether a string starts or ends with a particular
character or string.
**Documentation:**
[`std::basic_string<CharT,Traits,Allocator>::starts_with`](https://en.cppreference.com/w/cpp/string/basic_string/starts_with),
[`std::basic_string<CharT,Traits,Allocator>::ends_with`](https://en.cppreference.com/w/cpp/string/basic_string/ends_with)
**Notes:**
*** promo
[Migration bug](https://crbug.com/1414647)
***
## C++20 Banned Language Features {#core-blocklist-20}
The following C++20 language features are not allowed in the Chromium codebase.
### char8_t <sup>[banned]</sup>
```c++
char8_t c = u8'x';
```
**Description:** A single UTF-8 code unit. Similar to `unsigned char`, but
considered a distinct type.
**Documentation:**
[Fundamental types](https://en.cppreference.com/w/cpp/language/types#char8_t)
**Notes:**
*** promo
Use `char` and unprefixed character literals. Non-UTF-8 encodings are rare
enough in Chromium that the value of distinguishing them at the type level is
low, and `char8_t*` is not interconvertible with `char*` (what ~all Chromium,
STL, and platform-specific APIs use), so using `u8` prefixes would obligate us
to insert casts everywhere. If you want to declare at a type level that a block
of data is string-like and not an arbitrary binary blob, prefer
`std::string[_view]` over `char*`.
***
### Modules <sup>[banned]</sup>
```c++
export module helloworld; // module declaration
import <iostream>; // import declaration
export void hello() { // export declaration
std::cout << "Hello world!\n";
}
```
**Description:** Modules provide an alternative to many uses of headers which
allows for faster compilation, better tooling support, and reduction of problems
like "include what you use".
**Documentation:**
[Modules](https://en.cppreference.com/w/cpp/language/modules)
**Notes:**
*** promo
Not yet sufficiently supported in Clang and GN. Re-evaluate when support
improves.
***
### [[no_unique_address]] <sup>[banned]</sup>
```c++
struct Empty {};
struct X {
int i;
[[no_unique_address]] Empty e;
};
```
**Description:** Allows a data member to be overlapped with other members.
**Documentation:**
[C++ attribute: `no_unique_address`](https://en.cppreference.com/w/cpp/language/attributes/no_unique_address)
**Notes:**
*** promo
Has no effect on Windows, for compatibility with Microsoft's ABI. Use
`NO_UNIQUE_ADDRESS` from `base/compiler_specific.h` instead. Do not use (either
form) on members of unions due to
[potential memory safety problems](https://github.com/llvm/llvm-project/issues/60711).
***
## C++20 Banned Library Features {#library-blocklist-20}
The following C++20 library features are not allowed in the Chromium codebase.
### std::atomic_ref <sup>[banned]</sup>
```c++
struct S { int a; int b; };
S not_atomic;
std::atomic_ref<S> is_atomic(not_atomic);
```
**Description:** Allows atomic access to objects that might not themselves be
atomic types. While any atomic_ref to an object exists, the object must be
accessed exclusively through atomic_ref instances.
**Documentation:**
[`std::atomic_ref`](https://en.cppreference.com/w/cpp/atomic/atomic_ref)
**Notes:**
*** promo
Banned due to being [unimplemented in libc++](https://reviews.llvm.org/D72240).
[Migration bug](https://crbug.com/1422701) (once this is allowed)
***
### std::bind_front <sup>[banned]</sup>
```c++
int minus(int a, int b);
auto fifty_minus_x = std::bind_front(minus, 50);
int forty = fifty_minus_x(10);
```
**Description:** An updated version of `std::bind` with fewer gotchas, similar
to `absl::bind_front`.
**Documentation:**
[`std::bind_front`, `std::bind_back`](https://en.cppreference.com/w/cpp/utility/functional/bind_front)
**Notes:**
*** promo
Overlaps with `base::Bind`.
***
### std::bit_cast <sup>[banned]</sup>
```c++
float quake_rsqrt(float number) {
long i = std::bit_cast<long>(number);
i = 0x5f3759df - (i >> 1); // wtf?
float y = std::bit_cast<float>(i);
return y * (1.5f - (0.5f * number * y * y));
}
```
**Description:** Returns an value constructed with the same bits as an value of
a different type.
**Documentation:**
[`std::bit_cast`](https://en.cppreference.com/w/cpp/numeric/bit_cast)
**Notes:**
*** promo
The `std::` version of `bit_cast` allows casting of pointer and reference types,
which is both useless in that it doesn't avoid UB, and dangerous in that it
allows arbitrary casting away of modifiers like `const`. Instead of using
`bit_cast` on pointers, use standard C++ casts. For use on values, use
`base::bit_cast` which does not allow this unwanted usage.
***
### std::{c8rtomb,mbrtoc8} <sup>[banned]</sup>
```c++
std::u8string_view strv = u8"zß水🍌";
std::mbstate_t state;
char out[MB_LEN_MAX] = {0};
for (char8_t c : strv) {
size_t rc = std::c8rtomb(out, c, &state);
...
```
**Description:** Converts a code point between UTF-8 and a multibyte character
encoded using the current C locale.
**Documentation:**
[`std::c8rtomb`](https://en.cppreference.com/w/cpp/string/multibyte/c8rtomb),
[`std::mbrtoc8`](https://en.cppreference.com/w/cpp/string/multibyte/mbrtoc8)
**Notes:**
*** promo
Chromium functionality should not vary with the C locale.
***
### Range factories and range adaptors <sup>[banned]</sup>
```c++
// Prints 1, 2, 3, 4, 5, 6.
for (auto i : std::ranges::iota_view(1, 7)) {
std::cout << i << '\n';
}
constexpr int kArr[] = {6, 2, 8, 4, 4, 2};
constexpr auto plus_one = std::views::transform([](int n){ return n + 1; });
static_assert(std::ranges::equal(kArr | plus_one, {7, 3, 9, 5, 5, 3}));
```
**Description:** Lightweight objects that represent iterable sequences.
Provides facilities for lazy operations on ranges, along with composition into
pipelines.
**Documentation:**
[Ranges library](https://en.cppreference.com/w/cpp/ranges)
**Notes:**
*** promo
Banned in Chrome due to questions about the design, impact on build time, and
runtime performance.
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/ZnIbkfJ0Glw)
***
### std::ranges::view_interface <sup>[banned]</sup>
```c++
class MyView : public std::ranges::view_interface<MyView> { ... };
```
**Description:** CRTP base class for implementing custom view objects.
**Documentation:**
[`std::ranges::view_interface`](https://en.cppreference.com/w/cpp/ranges/view_interface)
**Notes:**
*** promo
Banned in Chrome since range factories and adapters are banned, and this would
primarily allow authors to create similar functionality.
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/ZnIbkfJ0Glw)
***
### <span> <sup>[banned]</sup>
```c++
#include <span>
```
**Description:** Utilities for non-owning views over a sequence of objects.
**Documentation:**
[](https://en.cppreference.com/w/cpp/header/span)
**Notes:**
*** promo
Superseded by `base::span`, which has a richer functionality set.
***
### std::to_address <sup>[banned]</sup>
```c++
std::vector<int> numbers;
int* i = std::to_address(numbers.begin());
```
**Description:** Converts a pointer-like object to a pointer, even if the
pointer does not refer to a constructed object (in which case an expression like
`&*p` is UB).
**Documentation:**
[`std::to_address`](https://en.cppreference.com/w/cpp/memory/to_address)
**Notes:**
*** promo
Banned because it is not guaranteed to be SFINAE-compatible. Use
base::to_address, which does guarantee this.
***
### <syncstream> <sup>[banned]</sup>
```c++
#include <syncstream>
```
**Description:** Facilities for multithreaded access to streams.
**Documentation:**
[Standard library header `<syncstream>`](https://en.cppreference.com/w/cpp/header/syncstream)
**Notes:**
*** promo
Banned due to being unimplemented per
[the libc++ C++20 status page](https://libcxx.llvm.org/Status/Cxx20.html).
Reevaluate usefulness once implemented.
***
## C++20 TBD Language Features {#core-review-20}
The following C++20 language features are not allowed in the Chromium codebase.
See the top of this page on how to propose moving a feature from this list into
the allowed or banned sections.
### Aggregate initialization using parentheses <sup>[tbd]</sup>
```c++
struct B {
int a;
int&& r;
} b2(1, 1); // Warning: dangling reference
```
**Description:** Allows initialization of aggregates using parentheses, not just
braces.
**Documentation:**
[Aggregate initialization](https://en.cppreference.com/w/cpp/language/aggregate_initialization),
[Direct initialization](https://en.cppreference.com/w/cpp/language/direct_initialization)
**Notes:**
*** promo
There are subtle but important differences between brace- and paren-init of
aggregates. The parenthesis style appears to have more pitfalls (allowing
narrowing conversions, not extending lifetimes of temporaries bound to
references).
***
### Coroutines <sup>[tbd]</sup>
```c++
co_return 1;
```
**Description:** Allows writing functions that logically block while physically
returning control to a caller. This enables writing some kinds of async code in
simple, straight-line ways without storing state in members or binding
callbacks.
**Documentation:**
[Coroutines](https://en.cppreference.com/w/cpp/language/coroutines)
**Notes:**
*** promo
Requires significant support code and planning around API and migration.
***
## C++20 TBD Library Features {#library-review-20}
The following C++20 library features are not allowed in the Chromium codebase.
See the top of this page on how to propose moving a feature from this list into
the allowed or banned sections.
### <coroutine> <sup>[tbd]</sup>
```c++
#include <coroutine>
```
**Description:** Header which defines various core coroutine types.
**Documentation:**
[Coroutine support](https://en.cppreference.com/w/cpp/coroutine)
**Notes:**
*** promo
See notes on "Coroutines" above.
***
### <format> <sup>[tbd]</sup>
```c++
std::cout << std::format("Hello {}!\n", "world");
```
**Description:** Utilities for producing formatted strings.
**Documentation:**
[Formatting library](https://en.cppreference.com/w/cpp/utility/format)
**Notes:**
*** promo
Has both pros and cons compared to `absl::StrFormat` (which we don't yet use).
Migration would be nontrivial.
***
### <source_location> <sup>[tbd]</sup>
```c++
#include <source_location>
```
**Description:** Provides a class that can hold source code details such as
filenames, function names, and line numbers.
**Documentation:**
[Standard library header `<source_location>`](https://en.cppreference.com/w/cpp/header/source_location)
**Notes:**
*** promo
Seems to regress code size vs. `base::Location`.
***
### std::u8string <sup>[tbd]</sup>
```c++
std::u8string str = u8"Foo";
```
**Description:** A string whose character type is `char8_t`, intended to hold
UTF-8-encoded text.
**Documentation:**
[`std::basic_string`](https://en.cppreference.com/w/cpp/string/basic_string)
**Notes:**
*** promo
See notes on `char8_t` above.
***
## Abseil Banned Library Features {#absl-blocklist}
The following Abseil library features are not allowed in the Chromium codebase.
### Any <sup>[banned]</sup>
```c++
absl::any a = int{5};
EXPECT_THAT(absl::any_cast<int>(&a), Pointee(5));
EXPECT_EQ(absl::any_cast<size_t>(&a), nullptr);
```
**Description:** Early adaptation of C++17 `std::any`.
**Documentation:** [std::any](https://en.cppreference.com/w/cpp/utility/any)
**Notes:**
*** promo
Banned since workaround for lack of RTTI
[isn't compatible with the component build](https://crbug.com/1096380). See also
`std::any`.
***
### AnyInvocable <sup>[banned]</sup>
```c++
absl::AnyInvocable
```
**Description:** An equivalent of the C++23 std::move_only_function.
**Documentation:**
* [any_invocable.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/functional/any_invocable.h)
* [std::move_only_function](https://en.cppreference.com/w/cpp/utility/functional/move_only_function/move_only_function)
**Notes:**
*** promo
Banned due to overlap with `base::RepeatingCallback`, `base::OnceCallback`.
***
### Attributes <sup>[banned]</sup>
```c++
T* data() ABSL_ATTRIBUTE_LIFETIME_BOUND { return data_; }
ABSL_ATTRIBUTE_NO_TAIL_CALL ReturnType Loop();
struct S { bool b; int32_t i; } ABSL_ATTRIBUTE_PACKED;
```
**Description:** Cross-platform macros to expose compiler-specific
functionality.
**Documentation:** [attributes.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/base/attributes.h)
**Notes:**
*** promo
Long names discourage use. Use standardized attributes over macros where
possible, and otherwise prefer shorter alternatives in
`base/compiler_specific.h`.
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/lVQOJTng1RU)
***
### btree_\* containers <sup>[banned]</sup>
```c++
absl::btree_map
absl::btree_set
absl::btree_multimap
absl::btree_multiset
```
**Description:** Alternatives to the tree-based standard library containers
designed to be more efficient in the general case.
**Documentation:** [Containers](https://abseil.io/docs/cpp/guides/container)
**Notes:**
*** promo
In theory these should be superior alternatives that could replace most uses of
`std::map` and company. In practice they have been found to introduce a
substantial code size increase. Until this problem can be resolved the use of
these containers is banned. Use the standard library containers instead.
***
### bind_front <sup>[banned]</sup>
```c++
absl::bind_front
```
**Description:** Binds the first N arguments of an invocable object and stores
them by value.
**Documentation:**
* [bind_front.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/functional/bind_front.h)
* [Avoid std::bind](https://abseil.io/tips/108)
**Notes:**
*** promo
Banned due to overlap with `base::Bind`.
***
### Command line flags <sup>[banned]</sup>
```c++
ABSL_FLAG(bool, logs, false, "print logs to stderr");
app --logs=true;
```
**Description:** Allows programmatic access to flag values passed on the
command-line to binaries.
**Documentation:** [Flags Library](https://abseil.io/docs/cpp/guides/flags)
**Notes:**
*** promo
Banned since workaround for lack of RTTI
[isn't compatible with the component build](https://crbug.com/1096380). Use
`base::CommandLine` instead.
***
### Container utilities <sup>[banned]</sup>
```c++
auto it = absl::c_find(container, value);
```
**Description:** Container-based versions of algorithmic functions within C++
standard library.
**Documentation:**
[container.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/algorithm/container.h)
**Notes:**
*** promo
Superseded by algorithms in `std::ranges::`.
***
### FixedArray <sup>[banned]</sup>
```c++
absl::FixedArray<MyObj> objs_;
```
**Description:** A fixed size array like `std::array`, but with size determined
at runtime instead of compile time.
**Documentation:**
[fixed_array.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/container/fixed_array.h)
**Notes:**
*** promo
Direct construction is banned due to the risk of UB with uninitialized
trivially-default-constructible types. Instead use `base/types/fixed_array.h`,
which is a light-weight wrapper that deletes the problematic constructor.
***
### FunctionRef <sup>[banned]</sup>
```c++
absl::FunctionRef
```
**Description:** Type for holding a non-owning reference to an object of any
invocable type.
**Documentation:**
[function_ref.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/functional/function_ref.h)
**Notes:**
*** promo
- `absl::FunctionRef` is banned due to allowing implicit conversions between
function signatures in potentially surprising ways. For example, a callable
with the signature `int()` will bind to `absl::FunctionRef<void()>`: the
return value from the callable will be silently discarded.
- In Chromium, use `base::FunctionRef` instead.
- Unlike `base::OnceCallback` and `base::RepeatingCallback`, `base::FunctionRef`
supports capturing lambdas.
- Useful when passing an invocable object to a function that synchronously calls
the invocable object, e.g. `ForEachFrame(base::FunctionRef<void(Frame&)>)`.
This can often result in clearer code than code that is templated to accept
lambdas, e.g. with `template <typename Invocable> void
ForEachFrame(Invocable invocable)`, it is much less obvious what arguments
will be passed to `invocable`.
- For now, `base::OnceCallback` and `base::RepeatingCallback` intentionally
disallow conversions to `base::FunctionRef`, under the theory that the
callback should be a capturing lambda instead. Attempting to use this
conversion will trigger a `static_assert` requesting additional feedback for
use cases where this conversion would be valuable.
- *Important:* `base::FunctionRef` must not outlive the function call. Like
`std::string_view`, `base::FunctionRef` is a *non-owning* reference. Using a
`base::FunctionRef` as a return value or class field is dangerous and likely
to result in lifetime bugs.
[Discussion thread](https://groups.google.com/a/chromium.org/g/cxx/c/JVN4E4IIYA0)
***
### Log macros and related classes <sup>[banned]</sup>
```c++
LOG(INFO) << message;
CHECK(condition);
absl::AddLogSink(&custom_sink_to_capture_absl_logs);
```
**Description:** Macros and related classes to perform debug loggings
**Documentation:**
[log.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/log/log.h)
[check.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/log/check.h)
**Notes:**
*** promo
Banned due to overlap with `base/logging.h`. We'd like to drop Chromium's
version and replace with the Abseil one, but no one has looked into how to
migrate and what impacts (e.g. build time) we'd incur. If you'd like to do this
work, please contact cxx@.
***
### NoDestructor <sup>[banned]</sup>
```c++
// Global or namespace scope.
ABSL_CONST_INIT absl::NoDestructor<MyRegistry> reg{"foo", "bar", 8008};
// Function scope.
const std::string& MyString() {
static const absl::NoDestructor<std::string> x("foo");
return *x;
}
```
**Description:** `absl::NoDestructor<T>` is a wrapper around an object of
type T that behaves as an object of type T but never calls T's destructor.
**Documentation:**
[no_destructor.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/base/no_desctructor.h)
**Notes:**
*** promo
Overlaps with `base::NoDestructor`. Banned pending rewriting friending of that
class into a form usable with this (see
[crbug.com/392931072](https://crbug.com/392931072)); at that point we can allow
this and migrate to it.
***
### Nullability annotations <sup>[banned]</sup>
```c++
void PaySalary(absl::NotNull<Employee *> employee) {
pay(*employee); // OK to dereference
}
```
**Description:** Annotations to more clearly specify contracts
**Documentation:**
[nullability.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/base/nullability.h)
**Notes:**
*** promo
Banned due to no feasible path to codebase-wide use and little mechanism for
enforcement.
***
### Optional <sup>[banned]</sup>
```c++
absl::optional<int> Func(bool b) {
return b ? absl::make_optional(1) : abl::nullopt;
}
```
**Description:** Early adaptation of C++17 `std::optional`.
**Documentation:** [std::optional](https://en.cppreference.com/w/cpp/utility/optional)
**Notes:**
*** promo
Superseded by `std::optional`. Use `std::optional` instead.
***
### Random <sup>[banned]</sup>
```c++
absl::BitGen bitgen;
size_t index = absl::Uniform(bitgen, 0u, elems.size());
```
**Description:** Functions and utilities for generating pseudorandom data.
**Documentation:** [Random library](https://abseil.io/docs/cpp/guides/random)
**Notes:**
*** promo
Banned because most uses of random values in Chromium should be using a
cryptographically secure generator. Use `base/rand_util.h` instead.
***
### Span <sup>[banned]</sup>
```c++
absl::Span
```
**Description:** Early adaptation of C++20 `std::span`.
**Documentation:** [Using absl::Span](https://abseil.io/tips/93)
**Notes:**
*** promo
Banned due to being less std::-compliant than `base::span`. Keep using
`base::span`.
***
### StatusOr <sup>[banned]</sup>
```c++
absl::StatusOr<T>
```
**Description:** An object that is either a usable value, or an error Status
explaining why such a value is not present.
**Documentation:**
[statusor.h](https://source.chromium.org/chromium/chromium/src/+/main:third_party/abseil-cpp/absl/status/statusor.h)
**Notes:**
*** promo
Overlaps with `base::expected`.
***
### string_view <sup>[banned]</sup>
```c++
absl::string_view
```
**Description:** Early adaptation of C++17 `std::string_view`.
**Documentation:** [absl::string_view](https://abseil.io/tips/1)
**Notes:**
*** promo
Originally banned due to only working with 8-bit characters. Now it is
unnecessary because, in Chromium, it is the same type as `std::string_view`.
Please use `std::string_view` instead.
***
### Strings Library <sup>[banned]</sup>
```c++
absl::StrSplit
absl::StrJoin
absl::StrCat
absl::StrAppend
absl::Substitute
absl::StrContains
```
**Description:** Classes and utility functions for manipulating and comparing
strings.
**Documentation:**
[String Utilities](https://abseil.io/docs/cpp/guides/strings)
**Notes:**
*** promo
Overlaps with `base/strings`. We
[should re-evalute](https://bugs.chromium.org/p/chromium/issues/detail?id=1371966)
when we've
[migrated](https://bugs.chromium.org/p/chromium/issues/detail?id=691162) from
`base::StringPiece` to `std::string_view`. Also note that `absl::StrFormat()` is
not considered part of this group, and is explicitly allowed.
***
### Synchronization <sup>[banned]</sup>
```c++
absl::Mutex
```
**Description:** Primitives for managing tasks across different threads.
**Documentation:**
[Synchronization](https://abseil.io/docs/cpp/guides/synchronization)
**Notes:**
*** promo
Overlaps with `base/synchronization/`. We would love
[more testing](https://bugs.chromium.org/p/chromium/issues/detail?id=1371969) on
whether there are compelling reasons to prefer base, absl, or std
synchronization primitives; for now, use `base/synchronization/`.
***
### Time library <sup>[banned]</sup>
```c++
absl::Duration
absl::Time
absl::TimeZone
absl::CivilDay
```
**Description:** Abstractions for holding time values, both in terms of
absolute time and civil time.
**Documentation:** [Time](https://abseil.io/docs/cpp/guides/time)
**Notes:**
*** promo
Overlaps with `base/time/`.
***
### Variant <sup>[banned]</sup>
```c++
absl::bad_variant_access;
absl::get;
absl::get_if;
absl::holds_alternative;
absl::monostate;
absl::variant;
absl::variant_alternative;
absl::variant_alternative_t;
absl::variant_npos;
absl::variant_size;
absl::variant_size_v;
absl::visit;
```
**Description:** A backport of C++17's std::variant type-safe union and related utilities.
**Notes:**
*** promo
These are just aliases to the std counterparts these days. Use std instead.
***
### Utility library <sup>[banned]</sup>
```c++
absl::apply;
absl::exchange;
absl::forward;
absl::in_place;
absl::in_place_index;
absl::in_place_index_t;
absl::in_place_t;
absl::in_place_type;
absl::in_place_type_t;
absl::index_sequence;
absl::index_sequence_for;
absl::integer_sequence;
absl::make_from_tuple;
absl::make_index_sequence;
absl::make_integer_sequence;
absl::move;
```
**Description:** Backports of various C++17 template utilities.
**Notes:**
*** promo
These are just aliases to the std counterparts these days. Use std instead.
***
|