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
|
// Main C++ standard library interfaces
module cxx03_std_algorithm [system] {
header "algorithm"
export *
}
module cxx03_std_any [system] {
header "any"
export *
}
module cxx03_std_array [system] {
header "array"
export *
}
module cxx03_std_atomic [system] {
header "atomic"
export *
}
module cxx03_std_barrier [system] {
header "barrier"
export *
}
module cxx03_std_bit [system] {
header "bit"
export *
}
module cxx03_std_bitset [system] {
header "bitset"
export *
}
module cxx03_std_charconv [system] {
header "charconv"
export *
}
module cxx03_std_chrono [system] {
header "chrono"
export *
}
module cxx03_std_codecvt [system] {
header "codecvt"
export *
}
module cxx03_std_compare [system] {
header "compare"
export *
}
module cxx03_std_complex [system] {
header "complex"
export *
}
module cxx03_std_concepts [system] {
header "concepts"
export *
}
module cxx03_std_condition_variable [system] {
header "condition_variable"
export *
}
module cxx03_std_coroutine [system] {
header "coroutine"
export *
}
module cxx03_std_deque [system] {
header "deque"
export *
}
module cxx03_std_exception [system] {
header "exception"
export *
}
module cxx03_std_execution [system] {
header "execution"
export *
}
module cxx03_std_expected [system] {
header "expected"
export *
}
module cxx03_std_filesystem [system] {
header "filesystem"
export *
}
module cxx03_std_format [system] {
header "format"
export *
}
module cxx03_std_forward_list [system] {
header "forward_list"
export *
}
module cxx03_std_fstream [system] {
header "fstream"
export *
}
module cxx03_std_functional [system] {
header "functional"
export *
}
module cxx03_std_future [system] {
header "future"
export *
}
module cxx03_std_initializer_list [system] {
header "initializer_list"
export *
}
module cxx03_std_iomanip [system] {
header "iomanip"
export *
}
module cxx03_std_ios [system] {
header "ios"
export *
}
module cxx03_std_iosfwd [system] {
header "iosfwd"
export *
}
module cxx03_std_iostream [system] {
header "iostream"
export *
}
module cxx03_std_istream [system] {
header "istream"
export *
}
module cxx03_std_iterator [system] {
header "iterator"
export *
}
module cxx03_std_latch [system] {
header "latch"
export *
}
module cxx03_std_limits [system] {
header "limits"
export *
}
module cxx03_std_list [system] {
header "list"
export *
}
module cxx03_std_locale [system] {
header "locale"
export *
}
module cxx03_std_map [system] {
header "map"
export *
}
module cxx03_std_mdspan [system] {
header "mdspan"
export *
}
module cxx03_std_memory [system] {
header "memory"
export *
}
module cxx03_std_memory_resource [system] {
header "memory_resource"
export *
}
module cxx03_std_mutex [system] {
header "mutex"
export *
}
module cxx03_std_new [system] {
header "new"
export *
}
module cxx03_std_numbers [system] {
header "numbers"
export *
}
module cxx03_std_numeric [system] {
header "numeric"
export *
}
module cxx03_std_optional [system] {
header "optional"
export *
}
module cxx03_std_ostream [system] {
header "ostream"
export *
}
module cxx03_std_print [system] {
header "print"
export *
}
module cxx03_std_queue [system] {
header "queue"
export *
}
module cxx03_std_random [system] {
header "random"
export *
}
module cxx03_std_ranges [system] {
header "ranges"
export *
}
module cxx03_std_ratio [system] {
header "ratio"
export *
}
module cxx03_std_regex [system] {
header "regex"
export *
}
module cxx03_std_scoped_allocator [system] {
header "scoped_allocator"
export *
}
module cxx03_std_semaphore [system] {
header "semaphore"
export *
}
module cxx03_std_set [system] {
header "set"
export *
}
module cxx03_std_shared_mutex [system] {
header "shared_mutex"
export std_version
}
module cxx03_std_source_location [system] {
header "source_location"
export *
}
module cxx03_std_span [system] {
header "span"
export std_private_ranges_enable_borrowed_range
export std_version
export std_private_span_span_fwd
}
module cxx03_std_sstream [system] {
header "sstream"
export *
}
module cxx03_std_stack [system] {
header "stack"
export *
}
module cxx03_std_stdexcept [system] {
header "stdexcept"
export *
}
module cxx03_std_stop_token {
header "stop_token"
export *
}
module cxx03_std_streambuf [system] {
header "streambuf"
export *
}
module cxx03_std_string [system] {
header "string"
export *
}
module cxx03_std_string_view [system] {
header "string_view"
export *
}
module cxx03_std_strstream [system] {
header "strstream"
export *
}
module cxx03_std_syncstream [system] {
header "syncstream"
export *
}
module cxx03_std_system_error [system] {
header "system_error"
export *
}
module cxx03_std_thread [system] {
header "thread"
export *
}
module cxx03_std_tuple [system] {
header "tuple"
export *
}
module cxx03_std_type_traits [system] {
header "type_traits"
export *
}
module cxx03_std_typeindex [system] {
header "typeindex"
export *
}
module cxx03_std_typeinfo [system] {
header "typeinfo"
export *
}
module cxx03_std_unordered_map [system] {
header "unordered_map"
export *
}
module cxx03_std_unordered_set [system] {
header "unordered_set"
export *
}
module cxx03_std_utility [system] {
header "utility"
export *
}
module cxx03_std_valarray [system] {
header "valarray"
export *
}
module cxx03_std_variant [system] {
header "variant"
export *
}
module cxx03_std_vector [system] {
header "vector"
export *
}
module cxx03_std_version [system] {
header "version"
export *
}
// C standard library interface wrappers
module cxx03_std_cassert [system] {
// <cassert>'s use of NDEBUG requires textual inclusion.
textual header "cassert"
}
module cxx03_std_ccomplex [system] {
header "ccomplex"
export *
}
module cxx03_std_cctype [system] {
header "cctype"
export *
}
module cxx03_std_cerrno [system] {
header "cerrno"
export *
}
module cxx03_std_cfenv [system] {
header "cfenv"
export *
}
module cxx03_std_cfloat [system] {
header "cfloat"
export *
}
module cxx03_std_cinttypes [system] {
header "cinttypes"
export *
}
module cxx03_std_ciso646 [system] {
header "ciso646"
export *
}
module cxx03_std_climits [system] {
header "climits"
export *
}
module cxx03_std_clocale [system] {
header "clocale"
export *
}
module cxx03_std_cmath [system] {
header "cmath"
export *
}
module cxx03_std_csetjmp [system] {
header "csetjmp"
export *
}
module cxx03_std_csignal [system] {
header "csignal"
export *
}
// FIXME: <cstdalign> is missing.
module cxx03_std_cstdarg [system] {
header "cstdarg"
export *
}
module cxx03_std_cstdbool [system] {
header "cstdbool"
export *
}
module cxx03_std_cstddef [system] {
header "cstddef"
export *
}
module cxx03_std_cstdint [system] {
header "cstdint"
export *
}
module cxx03_std_cstdio [system] {
header "cstdio"
export *
}
module cxx03_std_cstdlib [system] {
header "cstdlib"
export *
}
module cxx03_std_cstring [system] {
header "cstring"
export *
}
module cxx03_std_ctgmath [system] {
header "ctgmath"
export *
}
module cxx03_std_ctime [system] {
header "ctime"
export *
}
module cxx03_std_cuchar [system] {
header "cuchar"
export *
}
module cxx03_std_cwchar [system] {
header "cwchar"
export *
}
module cxx03_std_cwctype [system] {
header "cwctype"
export *
}
// C standard library interfaces augmented/replaced in C++
// <assert.h> provided by C library.
module cxx03_std_complex_h [system] {
header "complex.h"
export *
}
module cxx03_std_ctype_h [system] {
header "ctype.h"
export *
}
module cxx03_std_errno_h [system] {
header "errno.h"
export *
}
module cxx03_std_fenv_h [system] {
header "fenv.h"
export *
}
module cxx03_std_float_h [system] {
header "float.h"
export *
}
module cxx03_std_inttypes_h [system] {
header "inttypes.h"
export *
}
// <iso646.h> provided by compiler.
module cxx03_std_locale_h [system] {
header "locale.h"
export *
}
module cxx03_std_math_h [system] {
header "math.h"
export *
}
// <setjmp.h> provided by C library.
// <signal.h> provided by C library.
// FIXME: <stdalign.h> is missing.
// <stdarg.h> provided by compiler.
module cxx03_std_stdatomic_h [system] {
header "stdatomic.h"
export *
}
module cxx03_std_stdbool_h [system] {
// <stdbool.h>'s __bool_true_false_are_defined macro requires textual inclusion.
textual header "stdbool.h"
export *
}
module cxx03_std_stddef_h [system] {
// <stddef.h>'s __need_* macros require textual inclusion.
textual header "stddef.h"
export *
}
module cxx03_std_stdint_h [system] {
header "stdint.h"
export *
}
module cxx03_std_stdio_h [system] {
// <stdio.h>'s __need_* macros require textual inclusion.
textual header "stdio.h"
export *
}
module cxx03_std_stdlib_h [system] {
// <stdlib.h>'s __need_* macros require textual inclusion.
textual header "stdlib.h"
export *
}
module cxx03_std_string_h [system] {
header "string.h"
export *
}
module cxx03_std_tgmath_h [system] {
header "tgmath.h"
export *
}
module cxx03_std_uchar_h [system] {
header "uchar.h"
export *
}
// <time.h> provided by C library.
module cxx03_std_wchar_h [system] {
// <wchar.h>'s __need_* macros require textual inclusion.
textual header "wchar.h"
export *
}
module cxx03_std_wctype_h [system] {
header "wctype.h"
export *
}
// Experimental C++ standard library interfaces
module cxx03_std_experimental [system] {
module iterator {
header "experimental/iterator"
export *
}
module memory {
header "experimental/memory"
export *
}
module propagate_const {
header "experimental/propagate_const"
export *
}
module simd {
module aligned_tag { private header "experimental/__simd/aligned_tag.h" }
module declaration { private header "experimental/__simd/declaration.h" }
module reference { private header "experimental/__simd/reference.h" }
module scalar { private header "experimental/__simd/scalar.h" }
module simd { private header "experimental/__simd/simd.h" }
module simd_mask { private header "experimental/__simd/simd_mask.h" }
module traits { private header "experimental/__simd/traits.h" }
module utility { private header "experimental/__simd/utility.h" }
module vec_ext { private header "experimental/__simd/vec_ext.h" }
header "experimental/simd"
export *
}
module type_traits {
header "experimental/type_traits"
export *
}
module utility {
header "experimental/utility"
export *
}
module __config {
textual header "experimental/__config"
export *
}
}
// Convenience method to get all of the above modules in a single import statement.
// Importing only the needed modules is likely to be more performant.
module cxx03_std [system] {
header "__std_clang_module"
export *
}
// Implementation detail headers that are private to libc++. These modules
// must not be directly imported.
module cxx03_std_private_assert [system] {
header "__assert"
export *
}
module cxx03_std_private_bit_reference [system] {
header "__bit_reference"
export *
}
module cxx03_std_private_fwd_bit_reference [system] {
header "__fwd/bit_reference.h"
}
module cxx03_std_private_config [system] {
textual header "__config"
textual header "__configuration/abi.h"
textual header "__configuration/availability.h"
textual header "__configuration/compiler.h"
textual header "__configuration/language.h"
textual header "__configuration/platform.h"
export *
}
module cxx03_std_private_hash_table [system] {
header "__hash_table"
export *
}
module cxx03_std_private_locale [system] {
header "__locale"
export *
}
module cxx03_std_private_mbstate_t [system] {
header "__mbstate_t.h"
export *
}
module cxx03_std_private_node_handle [system] {
header "__node_handle"
export *
}
module cxx03_std_private_split_buffer [system] {
header "__split_buffer"
export *
}
module cxx03_std_private_std_mbstate_t [system] {
header "__std_mbstate_t.h"
export *
}
module cxx03_std_private_tree [system] {
header "__tree"
export *
}
module cxx03_std_private_undef_macros [system] {
textual header "__undef_macros"
export *
}
module cxx03_std_private_verbose_abort [system] {
header "__verbose_abort"
export *
}
module cxx03_std_private_algorithm_adjacent_find [system] { header "__algorithm/adjacent_find.h" }
module cxx03_std_private_algorithm_all_of [system] { header "__algorithm/all_of.h" }
module cxx03_std_private_algorithm_any_of [system] { header "__algorithm/any_of.h" }
module cxx03_std_private_algorithm_binary_search [system] { header "__algorithm/binary_search.h" }
module cxx03_std_private_algorithm_clamp [system] { header "__algorithm/clamp.h" }
module cxx03_std_private_algorithm_comp [system] { header "__algorithm/comp.h" }
module cxx03_std_private_algorithm_comp_ref_type [system] { header "__algorithm/comp_ref_type.h" }
module cxx03_std_private_algorithm_copy [system] {
header "__algorithm/copy.h"
export std_private_algorithm_copy_move_common
}
module cxx03_std_private_algorithm_copy_backward [system] { header "__algorithm/copy_backward.h" }
module cxx03_std_private_algorithm_copy_if [system] { header "__algorithm/copy_if.h" }
module cxx03_std_private_algorithm_copy_move_common [system] {
header "__algorithm/copy_move_common.h"
export std_private_type_traits_is_trivially_copyable
}
module cxx03_std_private_algorithm_copy_n [system] { header "__algorithm/copy_n.h" }
module cxx03_std_private_algorithm_count [system] { header "__algorithm/count.h" }
module cxx03_std_private_algorithm_count_if [system] { header "__algorithm/count_if.h" }
module cxx03_std_private_algorithm_equal [system] { header "__algorithm/equal.h" }
module cxx03_std_private_algorithm_equal_range [system] { header "__algorithm/equal_range.h" }
module cxx03_std_private_algorithm_fill [system] { header "__algorithm/fill.h" }
module cxx03_std_private_algorithm_fill_n [system] { header "__algorithm/fill_n.h" }
module cxx03_std_private_algorithm_find [system] {
header "__algorithm/find.h"
export std_private_algorithm_unwrap_iter
}
module cxx03_std_private_algorithm_find_end [system] { header "__algorithm/find_end.h" }
module cxx03_std_private_algorithm_find_first_of [system] { header "__algorithm/find_first_of.h" }
module cxx03_std_private_algorithm_find_if [system] { header "__algorithm/find_if.h" }
module cxx03_std_private_algorithm_find_if_not [system] { header "__algorithm/find_if_not.h" }
module cxx03_std_private_algorithm_find_segment_if [system] { header "__algorithm/find_segment_if.h" }
module cxx03_std_private_algorithm_fold [system] { header "__algorithm/fold.h" }
module cxx03_std_private_algorithm_for_each [system] { header "__algorithm/for_each.h" }
module cxx03_std_private_algorithm_for_each_n [system] { header "__algorithm/for_each_n.h" }
module cxx03_std_private_algorithm_for_each_segment [system] { header "__algorithm/for_each_segment.h" }
module cxx03_std_private_algorithm_generate [system] { header "__algorithm/generate.h" }
module cxx03_std_private_algorithm_generate_n [system] { header "__algorithm/generate_n.h" }
module cxx03_std_private_algorithm_half_positive [system] { header "__algorithm/half_positive.h" }
module cxx03_std_private_algorithm_in_found_result [system] { header "__algorithm/in_found_result.h" }
module cxx03_std_private_algorithm_in_fun_result [system] { header "__algorithm/in_fun_result.h" }
module cxx03_std_private_algorithm_in_in_out_result [system] { header "__algorithm/in_in_out_result.h" }
module cxx03_std_private_algorithm_in_in_result [system] { header "__algorithm/in_in_result.h" }
module cxx03_std_private_algorithm_in_out_out_result [system] { header "__algorithm/in_out_out_result.h" }
module cxx03_std_private_algorithm_in_out_result [system] { header "__algorithm/in_out_result.h" }
module cxx03_std_private_algorithm_includes [system] { header "__algorithm/includes.h" }
module cxx03_std_private_algorithm_inplace_merge [system] { header "__algorithm/inplace_merge.h" }
module cxx03_std_private_algorithm_is_heap [system] { header "__algorithm/is_heap.h" }
module cxx03_std_private_algorithm_is_heap_until [system] { header "__algorithm/is_heap_until.h" }
module cxx03_std_private_algorithm_is_partitioned [system] { header "__algorithm/is_partitioned.h" }
module cxx03_std_private_algorithm_is_permutation [system] { header "__algorithm/is_permutation.h" }
module cxx03_std_private_algorithm_is_sorted [system] { header "__algorithm/is_sorted.h" }
module cxx03_std_private_algorithm_is_sorted_until [system] { header "__algorithm/is_sorted_until.h" }
module cxx03_std_private_algorithm_iter_swap [system] { header "__algorithm/iter_swap.h" }
module cxx03_std_private_algorithm_iterator_operations [system] {
header "__algorithm/iterator_operations.h"
export *
}
module cxx03_std_private_algorithm_lexicographical_compare [system] { header "__algorithm/lexicographical_compare.h" }
module cxx03_std_private_algorithm_lexicographical_compare_three_way [system] { header "__algorithm/lexicographical_compare_three_way.h" }
module cxx03_std_private_algorithm_lower_bound [system] { header "__algorithm/lower_bound.h" }
module cxx03_std_private_algorithm_make_heap [system] { header "__algorithm/make_heap.h" }
module cxx03_std_private_algorithm_make_projected [system] { header "__algorithm/make_projected.h" }
module cxx03_std_private_algorithm_max [system] { header "__algorithm/max.h" }
module cxx03_std_private_algorithm_max_element [system] { header "__algorithm/max_element.h" }
module cxx03_std_private_algorithm_merge [system] { header "__algorithm/merge.h" }
module cxx03_std_private_algorithm_min [system] { header "__algorithm/min.h" }
module cxx03_std_private_algorithm_min_element [system] { header "__algorithm/min_element.h" }
module cxx03_std_private_algorithm_min_max_result [system] { header "__algorithm/min_max_result.h" }
module cxx03_std_private_algorithm_minmax [system] {
header "__algorithm/minmax.h"
export *
}
module cxx03_std_private_algorithm_minmax_element [system] { header "__algorithm/minmax_element.h" }
module cxx03_std_private_algorithm_mismatch [system] {
header "__algorithm/mismatch.h"
export std_private_algorithm_simd_utils
export std_private_iterator_aliasing_iterator
}
module cxx03_std_private_algorithm_move [system] { header "__algorithm/move.h" }
module cxx03_std_private_algorithm_move_backward [system] { header "__algorithm/move_backward.h" }
module cxx03_std_private_algorithm_next_permutation [system] { header "__algorithm/next_permutation.h" }
module cxx03_std_private_algorithm_none_of [system] { header "__algorithm/none_of.h" }
module cxx03_std_private_algorithm_nth_element [system] { header "__algorithm/nth_element.h" }
module cxx03_std_private_algorithm_partial_sort [system] { header "__algorithm/partial_sort.h" }
module cxx03_std_private_algorithm_partial_sort_copy [system] { header "__algorithm/partial_sort_copy.h" }
module cxx03_std_private_algorithm_partition [system] { header "__algorithm/partition.h" }
module cxx03_std_private_algorithm_partition_copy [system] { header "__algorithm/partition_copy.h" }
module cxx03_std_private_algorithm_partition_point [system] { header "__algorithm/partition_point.h" }
module cxx03_std_private_algorithm_pop_heap [system] { header "__algorithm/pop_heap.h" }
module cxx03_std_private_algorithm_prev_permutation [system] { header "__algorithm/prev_permutation.h" }
module cxx03_std_private_algorithm_pstl [system] {
header "__algorithm/pstl.h"
export *
}
module cxx03_std_private_algorithm_push_heap [system] { header "__algorithm/push_heap.h" }
module cxx03_std_private_algorithm_ranges_adjacent_find [system] { header "__algorithm/ranges_adjacent_find.h" }
module cxx03_std_private_algorithm_ranges_all_of [system] { header "__algorithm/ranges_all_of.h" }
module cxx03_std_private_algorithm_ranges_any_of [system] { header "__algorithm/ranges_any_of.h" }
module cxx03_std_private_algorithm_ranges_binary_search [system] {
header "__algorithm/ranges_binary_search.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_clamp [system] {
header "__algorithm/ranges_clamp.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_contains [system] { header "__algorithm/ranges_contains.h" }
module cxx03_std_private_algorithm_ranges_contains_subrange [system] { header "__algorithm/ranges_contains_subrange.h" }
module cxx03_std_private_algorithm_ranges_copy [system] {
header "__algorithm/ranges_copy.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_copy_backward [system] {
header "__algorithm/ranges_copy_backward.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_copy_if [system] {
header "__algorithm/ranges_copy_if.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_copy_n [system] {
header "__algorithm/ranges_copy_n.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_count [system] { header "__algorithm/ranges_count.h" }
module cxx03_std_private_algorithm_ranges_count_if [system] { header "__algorithm/ranges_count_if.h" }
module cxx03_std_private_algorithm_ranges_ends_with [system] { header "__algorithm/ranges_ends_with.h" }
module cxx03_std_private_algorithm_ranges_equal [system] { header "__algorithm/ranges_equal.h" }
module cxx03_std_private_algorithm_ranges_equal_range [system] {
header "__algorithm/ranges_equal_range.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_fill [system] { header "__algorithm/ranges_fill.h" }
module cxx03_std_private_algorithm_ranges_fill_n [system] { header "__algorithm/ranges_fill_n.h" }
module cxx03_std_private_algorithm_ranges_find [system] { header "__algorithm/ranges_find.h" }
module cxx03_std_private_algorithm_ranges_find_end [system] { header "__algorithm/ranges_find_end.h" }
module cxx03_std_private_algorithm_ranges_find_first_of [system] { header "__algorithm/ranges_find_first_of.h" }
module cxx03_std_private_algorithm_ranges_find_if [system] { header "__algorithm/ranges_find_if.h" }
module cxx03_std_private_algorithm_ranges_find_if_not [system] { header "__algorithm/ranges_find_if_not.h" }
module cxx03_std_private_algorithm_ranges_find_last [system] { header "__algorithm/ranges_find_last.h" }
module cxx03_std_private_algorithm_ranges_for_each [system] {
header "__algorithm/ranges_for_each.h"
export std_private_algorithm_in_fun_result
}
module cxx03_std_private_algorithm_ranges_for_each_n [system] {
header "__algorithm/ranges_for_each_n.h"
export std_private_algorithm_in_fun_result
}
module cxx03_std_private_algorithm_ranges_generate [system] { header "__algorithm/ranges_generate.h" }
module cxx03_std_private_algorithm_ranges_generate_n [system] { header "__algorithm/ranges_generate_n.h" }
module cxx03_std_private_algorithm_ranges_includes [system] {
header "__algorithm/ranges_includes.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_inplace_merge [system] {
header "__algorithm/ranges_inplace_merge.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_is_heap [system] {
header "__algorithm/ranges_is_heap.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_is_heap_until [system] {
header "__algorithm/ranges_is_heap_until.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_is_partitioned [system] { header "__algorithm/ranges_is_partitioned.h" }
module cxx03_std_private_algorithm_ranges_is_permutation [system] { header "__algorithm/ranges_is_permutation.h" }
module cxx03_std_private_algorithm_ranges_is_sorted [system] {
header "__algorithm/ranges_is_sorted.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_is_sorted_until [system] {
header "__algorithm/ranges_is_sorted_until.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_iterator_concept [system] { header "__algorithm/ranges_iterator_concept.h" }
module cxx03_std_private_algorithm_ranges_lexicographical_compare [system] {
header "__algorithm/ranges_lexicographical_compare.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_lower_bound [system] {
header "__algorithm/ranges_lower_bound.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_make_heap [system] {
header "__algorithm/ranges_make_heap.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_max [system] {
header "__algorithm/ranges_max.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_max_element [system] {
header "__algorithm/ranges_max_element.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_merge [system] {
header "__algorithm/ranges_merge.h"
export std_private_algorithm_in_in_out_result
}
module cxx03_std_private_algorithm_ranges_min [system] {
header "__algorithm/ranges_min.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_min_element [system] {
header "__algorithm/ranges_min_element.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_minmax [system] {
header "__algorithm/ranges_minmax.h"
export std_private_functional_ranges_operations
export std_private_algorithm_min_max_result
}
module cxx03_std_private_algorithm_ranges_minmax_element [system] {
header "__algorithm/ranges_minmax_element.h"
export std_private_functional_ranges_operations
export std_private_algorithm_min_max_result
}
module cxx03_std_private_algorithm_ranges_mismatch [system] {
header "__algorithm/ranges_mismatch.h"
export std_private_algorithm_in_in_result
}
module cxx03_std_private_algorithm_ranges_move [system] {
header "__algorithm/ranges_move.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_move_backward [system] {
header "__algorithm/ranges_move_backward.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_next_permutation [system] {
header "__algorithm/ranges_next_permutation.h"
export std_private_algorithm_in_found_result
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_none_of [system] { header "__algorithm/ranges_none_of.h" }
module cxx03_std_private_algorithm_ranges_nth_element [system] {
header "__algorithm/ranges_nth_element.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_partial_sort [system] {
header "__algorithm/ranges_partial_sort.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_partial_sort_copy [system] {
header "__algorithm/ranges_partial_sort_copy.h"
export std_private_algorithm_in_out_result
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_partition [system] { header "__algorithm/ranges_partition.h" }
module cxx03_std_private_algorithm_ranges_partition_copy [system] { header "__algorithm/ranges_partition_copy.h" }
module cxx03_std_private_algorithm_ranges_partition_point [system] { header "__algorithm/ranges_partition_point.h" }
module cxx03_std_private_algorithm_ranges_pop_heap [system] {
header "__algorithm/ranges_pop_heap.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_prev_permutation [system] {
header "__algorithm/ranges_prev_permutation.h"
export std_private_algorithm_in_found_result
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_push_heap [system] {
header "__algorithm/ranges_push_heap.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_remove [system] { header "__algorithm/ranges_remove.h" }
module cxx03_std_private_algorithm_ranges_remove_copy [system] {
header "__algorithm/ranges_remove_copy.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_remove_copy_if [system] {
header "__algorithm/ranges_remove_copy_if.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_remove_if [system] { header "__algorithm/ranges_remove_if.h" }
module cxx03_std_private_algorithm_ranges_replace [system] { header "__algorithm/ranges_replace.h" }
module cxx03_std_private_algorithm_ranges_replace_copy [system] {
header "__algorithm/ranges_replace_copy.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_replace_copy_if [system] {
header "__algorithm/ranges_replace_copy_if.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_replace_if [system] { header "__algorithm/ranges_replace_if.h" }
module cxx03_std_private_algorithm_ranges_reverse [system] { header "__algorithm/ranges_reverse.h" }
module cxx03_std_private_algorithm_ranges_reverse_copy [system] {
header "__algorithm/ranges_reverse_copy.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_rotate [system] { header "__algorithm/ranges_rotate.h" }
module cxx03_std_private_algorithm_ranges_rotate_copy [system] {
header "__algorithm/ranges_rotate_copy.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_sample [system] { header "__algorithm/ranges_sample.h" }
module cxx03_std_private_algorithm_ranges_search [system] { header "__algorithm/ranges_search.h" }
module cxx03_std_private_algorithm_ranges_search_n [system] { header "__algorithm/ranges_search_n.h" }
module cxx03_std_private_algorithm_ranges_set_difference [system] {
header "__algorithm/ranges_set_difference.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_set_intersection [system] {
header "__algorithm/ranges_set_intersection.h"
export std_private_algorithm_in_in_out_result
}
module cxx03_std_private_algorithm_ranges_set_symmetric_difference [system] {
header "__algorithm/ranges_set_symmetric_difference.h"
export std_private_algorithm_in_in_out_result
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_set_union [system] {
header "__algorithm/ranges_set_union.h"
export std_private_algorithm_in_in_out_result
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_shuffle [system] { header "__algorithm/ranges_shuffle.h" }
module cxx03_std_private_algorithm_ranges_sort [system] {
header "__algorithm/ranges_sort.h"
export std_private_algorithm_make_projected
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_sort_heap [system] {
header "__algorithm/ranges_sort_heap.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_stable_partition [system] { header "__algorithm/ranges_stable_partition.h" }
module cxx03_std_private_algorithm_ranges_stable_sort [system] {
header "__algorithm/ranges_stable_sort.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_ranges_starts_with [system] { header "__algorithm/ranges_starts_with.h" }
module cxx03_std_private_algorithm_ranges_swap_ranges [system] {
header "__algorithm/ranges_swap_ranges.h"
export std_private_algorithm_in_in_result
}
module cxx03_std_private_algorithm_ranges_transform [system] {
header "__algorithm/ranges_transform.h"
export std_private_algorithm_in_in_out_result
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_unique [system] { header "__algorithm/ranges_unique.h" }
module cxx03_std_private_algorithm_ranges_unique_copy [system] {
header "__algorithm/ranges_unique_copy.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_algorithm_ranges_upper_bound [system] {
header "__algorithm/ranges_upper_bound.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_algorithm_remove [system] { header "__algorithm/remove.h" }
module cxx03_std_private_algorithm_remove_copy [system] { header "__algorithm/remove_copy.h" }
module cxx03_std_private_algorithm_remove_copy_if [system] { header "__algorithm/remove_copy_if.h" }
module cxx03_std_private_algorithm_remove_if [system] { header "__algorithm/remove_if.h" }
module cxx03_std_private_algorithm_replace [system] { header "__algorithm/replace.h" }
module cxx03_std_private_algorithm_replace_copy [system] { header "__algorithm/replace_copy.h" }
module cxx03_std_private_algorithm_replace_copy_if [system] { header "__algorithm/replace_copy_if.h" }
module cxx03_std_private_algorithm_replace_if [system] { header "__algorithm/replace_if.h" }
module cxx03_std_private_algorithm_reverse [system] { header "__algorithm/reverse.h" }
module cxx03_std_private_algorithm_reverse_copy [system] { header "__algorithm/reverse_copy.h" }
module cxx03_std_private_algorithm_rotate [system] { header "__algorithm/rotate.h" }
module cxx03_std_private_algorithm_rotate_copy [system] { header "__algorithm/rotate_copy.h" }
module cxx03_std_private_algorithm_sample [system] { header "__algorithm/sample.h" }
module cxx03_std_private_algorithm_search [system] { header "__algorithm/search.h" }
module cxx03_std_private_algorithm_search_n [system] { header "__algorithm/search_n.h" }
module cxx03_std_private_algorithm_set_difference [system] { header "__algorithm/set_difference.h" }
module cxx03_std_private_algorithm_set_intersection [system] { header "__algorithm/set_intersection.h" }
module cxx03_std_private_algorithm_set_symmetric_difference [system] { header "__algorithm/set_symmetric_difference.h" }
module cxx03_std_private_algorithm_set_union [system] { header "__algorithm/set_union.h" }
module cxx03_std_private_algorithm_shift_left [system] { header "__algorithm/shift_left.h" }
module cxx03_std_private_algorithm_shift_right [system] { header "__algorithm/shift_right.h" }
module cxx03_std_private_algorithm_shuffle [system] { header "__algorithm/shuffle.h" }
module cxx03_std_private_algorithm_sift_down [system] { header "__algorithm/sift_down.h" }
module cxx03_std_private_algorithm_sort [system] {
header "__algorithm/sort.h"
export std_private_debug_utils_strict_weak_ordering_check
}
module cxx03_std_private_algorithm_simd_utils [system] { header "__algorithm/simd_utils.h" }
module cxx03_std_private_algorithm_sort_heap [system] { header "__algorithm/sort_heap.h" }
module cxx03_std_private_algorithm_stable_partition [system] { header "__algorithm/stable_partition.h" }
module cxx03_std_private_algorithm_stable_sort [system] { header "__algorithm/stable_sort.h" }
module cxx03_std_private_algorithm_swap_ranges [system] {
header "__algorithm/swap_ranges.h"
export std_private_algorithm_iterator_operations
}
module cxx03_std_private_algorithm_three_way_comp_ref_type [system] { header "__algorithm/three_way_comp_ref_type.h" }
module cxx03_std_private_algorithm_transform [system] { header "__algorithm/transform.h" }
module cxx03_std_private_algorithm_uniform_random_bit_generator_adaptor [system] { header "__algorithm/uniform_random_bit_generator_adaptor.h" }
module cxx03_std_private_algorithm_unique [system] { header "__algorithm/unique.h" }
module cxx03_std_private_algorithm_unique_copy [system] { header "__algorithm/unique_copy.h" }
module cxx03_std_private_algorithm_unwrap_iter [system] {
header "__algorithm/unwrap_iter.h"
export std_private_iterator_iterator_traits
}
module cxx03_std_private_algorithm_unwrap_range [system] {
header "__algorithm/unwrap_range.h"
export std_private_utility_pair
}
module cxx03_std_private_algorithm_upper_bound [system] { header "__algorithm/upper_bound.h" }
module cxx03_std_private_array_array_fwd [system] { header "__fwd/array.h" }
module cxx03_std_private_atomic_aliases [system] {
header "__atomic/aliases.h"
export std_private_atomic_atomic
}
module cxx03_std_private_atomic_atomic [system] {
header "__atomic/atomic.h"
export std_private_atomic_atomic_base
}
module cxx03_std_private_atomic_atomic_base [system] { header "__atomic/atomic_base.h" }
module cxx03_std_private_atomic_atomic_flag [system] {
header "__atomic/atomic_flag.h"
export *
}
module cxx03_std_private_atomic_atomic_init [system] { header "__atomic/atomic_init.h" }
module cxx03_std_private_atomic_atomic_lock_free [system] { header "__atomic/atomic_lock_free.h" }
module cxx03_std_private_atomic_atomic_ref [system] { header "__atomic/atomic_ref.h" }
module cxx03_std_private_atomic_atomic_sync [system] {
header "__atomic/atomic_sync.h"
export std_private_atomic_to_gcc_order
}
module cxx03_std_private_atomic_check_memory_order [system] { header "__atomic/check_memory_order.h" }
module cxx03_std_private_atomic_contention_t [system] { header "__atomic/contention_t.h" }
module cxx03_std_private_atomic_cxx_atomic_impl [system] { header "__atomic/cxx_atomic_impl.h" }
module cxx03_std_private_atomic_fence [system] { header "__atomic/fence.h" }
module cxx03_std_private_atomic_is_always_lock_free [system] { header "__atomic/is_always_lock_free.h" }
module cxx03_std_private_atomic_kill_dependency [system] { header "__atomic/kill_dependency.h" }
module cxx03_std_private_atomic_memory_order [system] { header "__atomic/memory_order.h" }
module cxx03_std_private_atomic_to_gcc_order [system] {
header "__atomic/to_gcc_order.h"
export std_private_atomic_memory_order
}
module cxx03_std_private_bit_bit_cast [system] { header "__bit/bit_cast.h" }
module cxx03_std_private_bit_bit_ceil [system] { header "__bit/bit_ceil.h" }
module cxx03_std_private_bit_bit_floor [system] { header "__bit/bit_floor.h" }
module cxx03_std_private_bit_bit_log2 [system] { header "__bit/bit_log2.h" }
module cxx03_std_private_bit_bit_width [system] { header "__bit/bit_width.h" }
module cxx03_std_private_bit_blsr [system] { header "__bit/blsr.h" }
module cxx03_std_private_bit_byteswap [system] { header "__bit/byteswap.h" }
module cxx03_std_private_bit_countl [system] { header "__bit/countl.h" }
module cxx03_std_private_bit_countr [system] { header "__bit/countr.h" }
module cxx03_std_private_bit_endian [system] { header "__bit/endian.h" }
module cxx03_std_private_bit_has_single_bit [system] { header "__bit/has_single_bit.h" }
module cxx03_std_private_bit_invert_if [system] { header "__bit/invert_if.h" }
module cxx03_std_private_bit_popcount [system] { header "__bit/popcount.h" }
module cxx03_std_private_bit_rotate [system] { header "__bit/rotate.h" }
module cxx03_std_private_charconv_chars_format [system] { header "__charconv/chars_format.h" }
module cxx03_std_private_charconv_from_chars_integral [system] { header "__charconv/from_chars_integral.h" }
module cxx03_std_private_charconv_from_chars_result [system] { header "__charconv/from_chars_result.h" }
module cxx03_std_private_charconv_tables [system] { header "__charconv/tables.h" }
module cxx03_std_private_charconv_to_chars [system] { header "__charconv/to_chars.h" }
module cxx03_std_private_charconv_to_chars_base_10 [system] { header "__charconv/to_chars_base_10.h" }
module cxx03_std_private_charconv_to_chars_floating_point [system] { header "__charconv/to_chars_floating_point.h" }
module cxx03_std_private_charconv_to_chars_integral [system] {
header "__charconv/to_chars_integral.h"
export std_private_charconv_traits
}
module cxx03_std_private_charconv_to_chars_result [system] {
header "__charconv/to_chars_result.h"
export *
}
module cxx03_std_private_charconv_traits [system] { header "__charconv/traits.h" }
module cxx03_std_private_chrono_calendar [system] { header "__chrono/calendar.h" }
module cxx03_std_private_chrono_concepts [system] { header "__chrono/concepts.h" }
module cxx03_std_private_chrono_convert_to_timespec [system] { header "__chrono/convert_to_timespec.h" }
module cxx03_std_private_chrono_convert_to_tm [system] { header "__chrono/convert_to_tm.h" }
module cxx03_std_private_chrono_day [system] { header "__chrono/day.h" }
module cxx03_std_private_chrono_duration [system] {
header "__chrono/duration.h"
export std_private_type_traits_is_convertible
}
module cxx03_std_private_chrono_exception [system] { header "__chrono/exception.h" }
module cxx03_std_private_chrono_file_clock [system] { header "__chrono/file_clock.h" }
module cxx03_std_private_chrono_formatter [system] {
header "__chrono/formatter.h"
}
module cxx03_std_private_chrono_hh_mm_ss [system] { header "__chrono/hh_mm_ss.h" }
module cxx03_std_private_chrono_high_resolution_clock [system] {
header "__chrono/high_resolution_clock.h"
export std_private_chrono_steady_clock
export std_private_chrono_system_clock
}
module cxx03_std_private_chrono_leap_second [system] { header "__chrono/leap_second.h" }
module cxx03_std_private_chrono_literals [system] { header "__chrono/literals.h" }
module cxx03_std_private_chrono_local_info [system] {
header "__chrono/local_info.h"
export std_private_chrono_sys_info
}
module cxx03_std_private_chrono_month [system] { header "__chrono/month.h" }
module cxx03_std_private_chrono_month_weekday [system] { header "__chrono/month_weekday.h" }
module cxx03_std_private_chrono_monthday [system] { header "__chrono/monthday.h" }
module cxx03_std_private_chrono_ostream [system] {
header "__chrono/ostream.h"
}
module cxx03_std_private_chrono_parser_std_format_spec [system] {
header "__chrono/parser_std_format_spec.h"
}
module cxx03_std_private_chrono_statically_widen [system] { header "__chrono/statically_widen.h" }
module cxx03_std_private_chrono_steady_clock [system] {
header "__chrono/steady_clock.h"
export std_private_chrono_time_point
}
module cxx03_std_private_chrono_time_zone [system] {
header "__chrono/time_zone.h"
export std_private_memory_unique_ptr
}
module cxx03_std_private_chrono_time_zone_link [system] {
header "__chrono/time_zone_link.h"
}
module cxx03_std_private_chrono_sys_info [system] {
header "__chrono/sys_info.h"
}
module cxx03_std_private_chrono_system_clock [system] {
header "__chrono/system_clock.h"
export std_private_chrono_time_point
}
module cxx03_std_private_chrono_tzdb [system] {
header "__chrono/tzdb.h"
export *
}
module cxx03_std_private_chrono_tzdb_list [system] {
header "__chrono/tzdb_list.h"
export *
}
module cxx03_std_private_chrono_time_point [system] { header "__chrono/time_point.h" }
module cxx03_std_private_chrono_weekday [system] { header "__chrono/weekday.h" }
module cxx03_std_private_chrono_year [system] { header "__chrono/year.h" }
module cxx03_std_private_chrono_year_month [system] { header "__chrono/year_month.h" }
module cxx03_std_private_chrono_year_month_day [system] { header "__chrono/year_month_day.h" }
module cxx03_std_private_chrono_year_month_weekday [system] { header "__chrono/year_month_weekday.h" }
module cxx03_std_private_chrono_zoned_time [system] { header "__chrono/zoned_time.h" }
module cxx03_std_private_compare_common_comparison_category [system] { header "__compare/common_comparison_category.h" }
module cxx03_std_private_compare_compare_partial_order_fallback [system] { header "__compare/compare_partial_order_fallback.h" }
module cxx03_std_private_compare_compare_strong_order_fallback [system] { header "__compare/compare_strong_order_fallback.h" }
module cxx03_std_private_compare_compare_three_way [system] { header "__compare/compare_three_way.h" }
module cxx03_std_private_compare_compare_three_way_result [system] { header "__compare/compare_three_way_result.h" }
module cxx03_std_private_compare_compare_weak_order_fallback [system] { header "__compare/compare_weak_order_fallback.h" }
module cxx03_std_private_compare_is_eq [system] { header "__compare/is_eq.h" }
module cxx03_std_private_compare_ordering [system] { header "__compare/ordering.h" }
module cxx03_std_private_compare_partial_order [system] { header "__compare/partial_order.h" }
module cxx03_std_private_compare_strong_order [system] { header "__compare/strong_order.h" }
module cxx03_std_private_compare_synth_three_way [system] { header "__compare/synth_three_way.h" }
module cxx03_std_private_compare_three_way_comparable [system] { header "__compare/three_way_comparable.h" }
module cxx03_std_private_compare_weak_order [system] { header "__compare/weak_order.h" }
module cxx03_std_private_complex_complex_fwd [system] { header "__fwd/complex.h" }
module cxx03_std_private_concepts_arithmetic [system] { header "__concepts/arithmetic.h" }
module cxx03_std_private_concepts_assignable [system] { header "__concepts/assignable.h" }
module cxx03_std_private_concepts_boolean_testable [system] { header "__concepts/boolean_testable.h" }
module cxx03_std_private_concepts_class_or_enum [system] { header "__concepts/class_or_enum.h" }
module cxx03_std_private_concepts_common_reference_with [system] { header "__concepts/common_reference_with.h" }
module cxx03_std_private_concepts_common_with [system] { header "__concepts/common_with.h" }
module cxx03_std_private_concepts_constructible [system] {
header "__concepts/constructible.h"
export std_private_concepts_destructible
}
module cxx03_std_private_concepts_convertible_to [system] { header "__concepts/convertible_to.h" }
module cxx03_std_private_concepts_copyable [system] { header "__concepts/copyable.h" }
module cxx03_std_private_concepts_derived_from [system] { header "__concepts/derived_from.h" }
module cxx03_std_private_concepts_destructible [system] {
header "__concepts/destructible.h"
export std_private_type_traits_is_nothrow_destructible
}
module cxx03_std_private_concepts_different_from [system] { header "__concepts/different_from.h" }
module cxx03_std_private_concepts_equality_comparable [system] {
header "__concepts/equality_comparable.h"
export std_private_type_traits_common_reference
}
module cxx03_std_private_concepts_invocable [system] { header "__concepts/invocable.h" }
module cxx03_std_private_concepts_movable [system] {
header "__concepts/movable.h"
export std_private_type_traits_is_object
}
module cxx03_std_private_concepts_predicate [system] { header "__concepts/predicate.h" }
module cxx03_std_private_concepts_regular [system] { header "__concepts/regular.h" }
module cxx03_std_private_concepts_relation [system] { header "__concepts/relation.h" }
module cxx03_std_private_concepts_same_as [system] {
header "__concepts/same_as.h"
export std_private_type_traits_is_same
}
module cxx03_std_private_concepts_semiregular [system] { header "__concepts/semiregular.h" }
module cxx03_std_private_concepts_swappable [system] { header "__concepts/swappable.h" }
module cxx03_std_private_concepts_totally_ordered [system] { header "__concepts/totally_ordered.h" }
module cxx03_std_private_condition_variable_condition_variable [system] {
header "__condition_variable/condition_variable.h"
export *
}
module cxx03_std_private_coroutine_coroutine_handle [system] { header "__coroutine/coroutine_handle.h" }
module cxx03_std_private_coroutine_coroutine_traits [system] { header "__coroutine/coroutine_traits.h" }
module cxx03_std_private_coroutine_noop_coroutine_handle [system] { header "__coroutine/noop_coroutine_handle.h" }
module cxx03_std_private_coroutine_trivial_awaitables [system] { header "__coroutine/trivial_awaitables.h" }
module cxx03_std_private_debug_utils_randomize_range [system] { header "__debug_utils/randomize_range.h" }
module cxx03_std_private_debug_utils_sanitizers [system] { header "__debug_utils/sanitizers.h" }
module cxx03_std_private_debug_utils_strict_weak_ordering_check [system] {
header "__debug_utils/strict_weak_ordering_check.h"
export std_private_type_traits_is_constant_evaluated
}
module cxx03_std_private_deque_fwd [system] { header "__fwd/deque.h" }
module cxx03_std_private_exception_exception [system] { header "__exception/exception.h" }
module cxx03_std_private_exception_exception_ptr [system] {
header "__exception/exception_ptr.h"
export std_private_exception_operations
}
module cxx03_std_private_exception_nested_exception [system] { header "__exception/nested_exception.h" }
module cxx03_std_private_exception_operations [system] { header "__exception/operations.h" }
module cxx03_std_private_exception_terminate [system] { header "__exception/terminate.h" }
module cxx03_std_private_expected_bad_expected_access [system] { header "__expected/bad_expected_access.h" }
module cxx03_std_private_expected_expected [system] { header "__expected/expected.h" }
module cxx03_std_private_expected_unexpect [system] { header "__expected/unexpect.h" }
module cxx03_std_private_expected_unexpected [system] { header "__expected/unexpected.h" }
module cxx03_std_private_filesystem_copy_options [system] { header "__filesystem/copy_options.h" }
module cxx03_std_private_filesystem_directory_entry [system] {
header "__filesystem/directory_entry.h"
export *
}
module cxx03_std_private_filesystem_directory_iterator [system] {
header "__filesystem/directory_iterator.h"
export *
}
module cxx03_std_private_filesystem_directory_options [system] { header "__filesystem/directory_options.h" }
module cxx03_std_private_filesystem_file_status [system] { header "__filesystem/file_status.h" }
module cxx03_std_private_filesystem_file_time_type [system] { header "__filesystem/file_time_type.h" }
module cxx03_std_private_filesystem_file_type [system] { header "__filesystem/file_type.h" }
module cxx03_std_private_filesystem_filesystem_error [system] {
header "__filesystem/filesystem_error.h"
export *
}
module cxx03_std_private_filesystem_operations [system] { header "__filesystem/operations.h" }
module cxx03_std_private_filesystem_path [system] {
header "__filesystem/path.h"
export *
}
module cxx03_std_private_filesystem_path_iterator [system] { header "__filesystem/path_iterator.h" }
module cxx03_std_private_filesystem_perm_options [system] { header "__filesystem/perm_options.h" }
module cxx03_std_private_filesystem_perms [system] { header "__filesystem/perms.h" }
module cxx03_std_private_filesystem_recursive_directory_iterator [system] {
header "__filesystem/recursive_directory_iterator.h"
export *
}
module cxx03_std_private_filesystem_space_info [system] { header "__filesystem/space_info.h" }
module cxx03_std_private_filesystem_u8path [system] { header "__filesystem/u8path.h" }
module cxx03_std_private_format_buffer [system] { header "__format/buffer.h" }
module cxx03_std_private_format_concepts [system] { header "__format/concepts.h" }
module cxx03_std_private_format_container_adaptor [system] { header "__format/container_adaptor.h" }
module cxx03_std_private_format_enable_insertable [system] { header "__format/enable_insertable.h" }
module cxx03_std_private_format_escaped_output_table [system] { header "__format/escaped_output_table.h" }
module cxx03_std_private_format_extended_grapheme_cluster_table [system] { header "__format/extended_grapheme_cluster_table.h" }
module cxx03_std_private_format_format_arg [system] { header "__format/format_arg.h" }
module cxx03_std_private_format_format_arg_store [system] { header "__format/format_arg_store.h" }
module cxx03_std_private_format_format_args [system] { header "__format/format_args.h" }
module cxx03_std_private_format_format_context [system] {
header "__format/format_context.h"
export *
}
module cxx03_std_private_format_format_error [system] { header "__format/format_error.h" }
module cxx03_std_private_format_format_functions [system] {
header "__format/format_functions.h"
export std_string
}
module cxx03_std_private_format_fwd [system] { header "__fwd/format.h" }
module cxx03_std_private_format_format_parse_context [system] { header "__format/format_parse_context.h" }
module cxx03_std_private_format_format_string [system] { header "__format/format_string.h" }
module cxx03_std_private_format_format_to_n_result [system] {
header "__format/format_to_n_result.h"
export std_private_iterator_incrementable_traits
}
module cxx03_std_private_format_formatter [system] { header "__format/formatter.h" }
module cxx03_std_private_format_formatter_bool [system] { header "__format/formatter_bool.h" }
module cxx03_std_private_format_formatter_char [system] { header "__format/formatter_char.h" }
module cxx03_std_private_format_formatter_floating_point [system] { header "__format/formatter_floating_point.h" }
module cxx03_std_private_format_formatter_integer [system] { header "__format/formatter_integer.h" }
module cxx03_std_private_format_formatter_integral [system] { header "__format/formatter_integral.h" }
module cxx03_std_private_format_formatter_output [system] { header "__format/formatter_output.h" }
module cxx03_std_private_format_formatter_pointer [system] { header "__format/formatter_pointer.h" }
module cxx03_std_private_format_formatter_string [system] { header "__format/formatter_string.h" }
module cxx03_std_private_format_formatter_tuple [system] { header "__format/formatter_tuple.h" }
module cxx03_std_private_format_indic_conjunct_break_table [system] { header "__format/indic_conjunct_break_table.h" }
module cxx03_std_private_format_parser_std_format_spec [system] { header "__format/parser_std_format_spec.h" }
module cxx03_std_private_format_range_default_formatter [system] { header "__format/range_default_formatter.h" }
module cxx03_std_private_format_range_formatter [system] { header "__format/range_formatter.h" }
module cxx03_std_private_format_unicode [system] {
header "__format/unicode.h"
export std_private_format_extended_grapheme_cluster_table
export std_private_format_indic_conjunct_break_table
}
module cxx03_std_private_format_width_estimation_table [system] { header "__format/width_estimation_table.h" }
module cxx03_std_private_format_write_escaped [system] { header "__format/write_escaped.h" }
module cxx03_std_private_functional_binary_function [system] { header "__functional/binary_function.h" }
module cxx03_std_private_functional_binary_negate [system] { header "__functional/binary_negate.h" }
module cxx03_std_private_functional_bind [system] { header "__functional/bind.h" }
module cxx03_std_private_functional_bind_back [system] { header "__functional/bind_back.h" }
module cxx03_std_private_functional_bind_front [system] { header "__functional/bind_front.h" }
module cxx03_std_private_functional_binder1st [system] { header "__functional/binder1st.h" }
module cxx03_std_private_functional_binder2nd [system] { header "__functional/binder2nd.h" }
module cxx03_std_private_functional_boyer_moore_searcher [system] {
header "__functional/boyer_moore_searcher.h"
export std_private_memory_shared_ptr
}
module cxx03_std_private_functional_compose [system] {
header "__functional/compose.h"
export std_private_functional_perfect_forward
}
module cxx03_std_private_functional_default_searcher [system] { header "__functional/default_searcher.h" }
module cxx03_std_private_functional_function [system] { header "__functional/function.h" }
module cxx03_std_private_functional_hash [system] {
header "__functional/hash.h"
export std_cstdint
export std_private_type_traits_underlying_type
export std_private_utility_pair
}
module cxx03_std_private_functional_fwd [system] { header "__fwd/functional.h" }
module cxx03_std_private_functional_identity [system] { header "__functional/identity.h" }
module cxx03_std_private_functional_invoke [system] {
header "__functional/invoke.h"
export *
}
module cxx03_std_private_functional_is_transparent [system] { header "__functional/is_transparent.h" }
module cxx03_std_private_functional_mem_fn [system] { header "__functional/mem_fn.h" }
module cxx03_std_private_functional_mem_fun_ref [system] { header "__functional/mem_fun_ref.h" }
module cxx03_std_private_functional_not_fn [system] {
header "__functional/not_fn.h"
export std_private_functional_perfect_forward
}
module cxx03_std_private_functional_operations [system] { header "__functional/operations.h" }
module cxx03_std_private_functional_perfect_forward [system] {
header "__functional/perfect_forward.h"
export *
}
module cxx03_std_private_functional_pointer_to_binary_function [system] { header "__functional/pointer_to_binary_function.h" }
module cxx03_std_private_functional_pointer_to_unary_function [system] { header "__functional/pointer_to_unary_function.h" }
module cxx03_std_private_functional_ranges_operations [system] { header "__functional/ranges_operations.h" }
module cxx03_std_private_functional_reference_wrapper [system] { header "__functional/reference_wrapper.h" }
module cxx03_std_private_functional_unary_function [system] { header "__functional/unary_function.h" }
module cxx03_std_private_functional_unary_negate [system] { header "__functional/unary_negate.h" }
module cxx03_std_private_functional_weak_result_type [system] { header "__functional/weak_result_type.h" }
module cxx03_std_private_ios_fpos [system] { header "__ios/fpos.h" }
module cxx03_std_private_iosfwd_fstream_fwd [system] { header "__fwd/fstream.h" }
module cxx03_std_private_iosfwd_ios_fwd [system] { header "__fwd/ios.h" }
module cxx03_std_private_iosfwd_istream_fwd [system] { header "__fwd/istream.h" }
module cxx03_std_private_iosfwd_ostream_fwd [system] { header "__fwd/ostream.h" }
module cxx03_std_private_iosfwd_sstream_fwd [system] { header "__fwd/sstream.h" }
module cxx03_std_private_iosfwd_streambuf_fwd [system] { header "__fwd/streambuf.h" }
module cxx03_std_private_iterator_access [system] { header "__iterator/access.h" }
module cxx03_std_private_iterator_advance [system] { header "__iterator/advance.h" }
module cxx03_std_private_iterator_aliasing_iterator [system] { header "__iterator/aliasing_iterator.h" }
module cxx03_std_private_iterator_back_insert_iterator [system] { header "__iterator/back_insert_iterator.h" }
module cxx03_std_private_iterator_bounded_iter [system] { header "__iterator/bounded_iter.h" }
module cxx03_std_private_iterator_common_iterator [system] { header "__iterator/common_iterator.h" }
module cxx03_std_private_iterator_concepts [system] {
header "__iterator/concepts.h"
export std_private_concepts_constructible
export std_private_concepts_equality_comparable
export std_private_concepts_movable
export std_private_type_traits_common_reference
export std_private_type_traits_is_reference
export std_private_type_traits_remove_cvref
}
module cxx03_std_private_iterator_counted_iterator [system] { header "__iterator/counted_iterator.h" }
module cxx03_std_private_iterator_cpp17_iterator_concepts [system] { header "__iterator/cpp17_iterator_concepts.h" }
module cxx03_std_private_iterator_data [system] { header "__iterator/data.h" }
module cxx03_std_private_iterator_default_sentinel [system] { header "__iterator/default_sentinel.h" }
module cxx03_std_private_iterator_distance [system] {
header "__iterator/distance.h"
export std_private_ranges_size
}
module cxx03_std_private_iterator_empty [system] { header "__iterator/empty.h" }
module cxx03_std_private_iterator_erase_if_container [system] { header "__iterator/erase_if_container.h" }
module cxx03_std_private_iterator_front_insert_iterator [system] { header "__iterator/front_insert_iterator.h" }
module cxx03_std_private_iterator_incrementable_traits [system] { header "__iterator/incrementable_traits.h" }
module cxx03_std_private_iterator_indirectly_comparable [system] { header "__iterator/indirectly_comparable.h" }
module cxx03_std_private_iterator_insert_iterator [system] { header "__iterator/insert_iterator.h" }
module cxx03_std_private_iterator_istream_iterator [system] { header "__iterator/istream_iterator.h" }
module cxx03_std_private_iterator_istreambuf_iterator [system] { header "__iterator/istreambuf_iterator.h" }
module cxx03_std_private_iterator_iter_move [system] { header "__iterator/iter_move.h" }
module cxx03_std_private_iterator_iter_swap [system] { header "__iterator/iter_swap.h" }
module cxx03_std_private_iterator_iterator [system] { header "__iterator/iterator.h" }
module cxx03_std_private_iterator_iterator_traits [system] {
header "__iterator/iterator_traits.h"
export std_private_type_traits_is_primary_template
}
module cxx03_std_private_iterator_iterator_with_data [system] { header "__iterator/iterator_with_data.h" }
module cxx03_std_private_iterator_mergeable [system] {
header "__iterator/mergeable.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_iterator_move_iterator [system] { header "__iterator/move_iterator.h" }
module cxx03_std_private_iterator_move_sentinel [system] { header "__iterator/move_sentinel.h" }
module cxx03_std_private_iterator_next [system] { header "__iterator/next.h" }
module cxx03_std_private_iterator_ostream_iterator [system] { header "__iterator/ostream_iterator.h" }
module cxx03_std_private_iterator_ostreambuf_iterator [system] {
header "__iterator/ostreambuf_iterator.h"
export *
}
module cxx03_std_private_iterator_permutable [system] { header "__iterator/permutable.h" }
module cxx03_std_private_iterator_prev [system] { header "__iterator/prev.h" }
module cxx03_std_private_iterator_projected [system] { header "__iterator/projected.h" }
module cxx03_std_private_iterator_ranges_iterator_traits [system] { header "__iterator/ranges_iterator_traits.h" }
module cxx03_std_private_iterator_readable_traits [system] { header "__iterator/readable_traits.h" }
module cxx03_std_private_iterator_reverse_access [system] { header "__iterator/reverse_access.h" }
module cxx03_std_private_iterator_reverse_iterator [system] { header "__iterator/reverse_iterator.h" }
module cxx03_std_private_iterator_segmented_iterator [system] { header "__iterator/segmented_iterator.h" }
module cxx03_std_private_iterator_size [system] { header "__iterator/size.h" }
module cxx03_std_private_iterator_sortable [system] {
header "__iterator/sortable.h"
export std_private_functional_ranges_operations
}
module cxx03_std_private_iterator_unreachable_sentinel [system] { header "__iterator/unreachable_sentinel.h" }
module cxx03_std_private_iterator_wrap_iter [system] { header "__iterator/wrap_iter.h" }
module cxx03_std_private_locale_locale_base_api_android [system] { textual header "__locale_dir/locale_base_api/android.h" }
module cxx03_std_private_locale_locale_base_api_bsd_locale_defaults [system] { textual header "__locale_dir/locale_base_api/bsd_locale_defaults.h" }
module cxx03_std_private_locale_locale_base_api_bsd_locale_fallbacks [system] { textual header "__locale_dir/locale_base_api/bsd_locale_fallbacks.h" }
module cxx03_std_private_locale_locale_base_api_fuchsia [system] { textual header "__locale_dir/locale_base_api/fuchsia.h" }
module cxx03_std_private_locale_locale_base_api_ibm [system] { textual header "__locale_dir/locale_base_api/ibm.h" }
module cxx03_std_private_locale_locale_base_api_locale_guard [system] { header "__locale_dir/locale_base_api/locale_guard.h" }
module cxx03_std_private_locale_locale_base_api_musl [system] { textual header "__locale_dir/locale_base_api/musl.h" }
module cxx03_std_private_locale_locale_base_api_newlib [system] { textual header "__locale_dir/locale_base_api/newlib.h" }
module cxx03_std_private_locale_locale_base_api_openbsd [system] { textual header "__locale_dir/locale_base_api/openbsd.h" }
module cxx03_std_private_locale_locale_base_api_win32 [system] { textual header "__locale_dir/locale_base_api/win32.h" }
module cxx03_std_private_locale_locale_base_api [system] {
header "__locale_dir/locale_base_api.h"
export *
}
module cxx03_std_private_math_abs [system] { header "__math/abs.h" }
module cxx03_std_private_math_copysign [system] { header "__math/copysign.h" }
module cxx03_std_private_math_error_functions [system] { header "__math/error_functions.h" }
module cxx03_std_private_math_exponential_functions [system] { header "__math/exponential_functions.h" }
module cxx03_std_private_math_fdim [system] { header "__math/fdim.h" }
module cxx03_std_private_math_fma [system] { header "__math/fma.h" }
module cxx03_std_private_math_gamma [system] { header "__math/gamma.h" }
module cxx03_std_private_math_hyperbolic_functions [system] { header "__math/hyperbolic_functions.h" }
module cxx03_std_private_math_hypot [system] { header "__math/hypot.h" }
module cxx03_std_private_math_inverse_hyperbolic_functions [system] { header "__math/inverse_hyperbolic_functions.h" }
module cxx03_std_private_math_inverse_trigonometric_functions [system] { header "__math/inverse_trigonometric_functions.h" }
module cxx03_std_private_math_logarithms [system] { header "__math/logarithms.h" }
module cxx03_std_private_math_min_max [system] { header "__math/min_max.h" }
module cxx03_std_private_math_modulo [system] { header "__math/modulo.h" }
module cxx03_std_private_math_remainder [system] { header "__math/remainder.h" }
module cxx03_std_private_math_roots [system] { header "__math/roots.h" }
module cxx03_std_private_math_rounding_functions [system] { header "__math/rounding_functions.h" }
module cxx03_std_private_math_special_functions [system] { header "__math/special_functions.h" }
module cxx03_std_private_math_traits [system] { header "__math/traits.h" }
module cxx03_std_private_math_trigonometric_functions [system] { header "__math/trigonometric_functions.h" }
module cxx03_std_private_mdspan_default_accessor [system] { header "__mdspan/default_accessor.h" }
module cxx03_std_private_mdspan_extents [system] {
header "__mdspan/extents.h"
export *
}
module cxx03_std_private_mdspan_layout_left [system] { header "__mdspan/layout_left.h" }
module cxx03_std_private_mdspan_layout_right [system] { header "__mdspan/layout_right.h" }
module cxx03_std_private_mdspan_layout_stride [system] { header "__mdspan/layout_stride.h" }
module cxx03_std_private_mdspan_mdspan [system] { header "__mdspan/mdspan.h" }
module cxx03_std_private_mdspan_mdspan_fwd [system] { header "__fwd/mdspan.h" }
module cxx03_std_private_memory_addressof [system] { header "__memory/addressof.h" }
module cxx03_std_private_memory_align [system] { header "__memory/align.h" }
module cxx03_std_private_memory_aligned_alloc [system] { header "__memory/aligned_alloc.h" }
module cxx03_std_private_memory_allocate_at_least [system] { header "__memory/allocate_at_least.h" }
module cxx03_std_private_memory_allocation_guard [system] { header "__memory/allocation_guard.h" }
module cxx03_std_private_memory_allocator [system] { header "__memory/allocator.h" }
module cxx03_std_private_memory_allocator_arg_t [system] { header "__memory/allocator_arg_t.h" }
module cxx03_std_private_memory_allocator_destructor [system] { header "__memory/allocator_destructor.h" }
module cxx03_std_private_memory_allocator_traits [system] { header "__memory/allocator_traits.h" }
module cxx03_std_private_memory_assume_aligned [system] { header "__memory/assume_aligned.h" }
module cxx03_std_private_memory_auto_ptr [system] { header "__memory/auto_ptr.h" }
module cxx03_std_private_memory_builtin_new_allocator [system] {
header "__memory/builtin_new_allocator.h"
export *
}
module cxx03_std_private_memory_compressed_pair [system] { header "__memory/compressed_pair.h" }
module cxx03_std_private_memory_concepts [system] {
header "__memory/concepts.h"
export std_private_type_traits_remove_reference
}
module cxx03_std_private_memory_construct_at [system] { header "__memory/construct_at.h" }
module cxx03_std_private_memory_destruct_n [system] { header "__memory/destruct_n.h" }
module cxx03_std_private_memory_fwd [system] { header "__fwd/memory.h" }
module cxx03_std_private_memory_inout_ptr [system] { header "__memory/inout_ptr.h" }
module cxx03_std_private_memory_out_ptr [system] { header "__memory/out_ptr.h" }
module cxx03_std_private_memory_pointer_traits [system] { header "__memory/pointer_traits.h" }
module cxx03_std_private_memory_ranges_construct_at [system] { header "__memory/ranges_construct_at.h" }
module cxx03_std_private_memory_ranges_uninitialized_algorithms [system] {
header "__memory/ranges_uninitialized_algorithms.h"
export std_private_algorithm_in_out_result
}
module cxx03_std_private_memory_raw_storage_iterator [system] { header "__memory/raw_storage_iterator.h" }
module cxx03_std_private_memory_shared_ptr [system] {
header "__memory/shared_ptr.h"
export std_private_memory_uninitialized_algorithms
}
module cxx03_std_private_memory_swap_allocator [system] { header "__memory/swap_allocator.h" }
module cxx03_std_private_memory_temp_value [system] { header "__memory/temp_value.h" }
module cxx03_std_private_memory_temporary_buffer [system] {
header "__memory/temporary_buffer.h"
export std_private_utility_pair
}
module cxx03_std_private_memory_uninitialized_algorithms [system] {
header "__memory/uninitialized_algorithms.h"
export std_private_algorithm_copy
}
module cxx03_std_private_memory_unique_ptr [system] {
header "__memory/unique_ptr.h"
export std_private_type_traits_add_lvalue_reference
export std_private_type_traits_is_pointer
export std_private_type_traits_type_identity
}
module cxx03_std_private_memory_uses_allocator [system] { header "__memory/uses_allocator.h" }
module cxx03_std_private_memory_uses_allocator_construction [system] { header "__memory/uses_allocator_construction.h" }
module cxx03_std_private_memory_voidify [system] { header "__memory/voidify.h" }
module cxx03_std_private_memory_resource_memory_resource [system] { header "__memory_resource/memory_resource.h" }
module cxx03_std_private_memory_resource_memory_resource_fwd [system] { header "__fwd/memory_resource.h" }
module cxx03_std_private_memory_resource_monotonic_buffer_resource [system] { header "__memory_resource/monotonic_buffer_resource.h" }
module cxx03_std_private_memory_resource_polymorphic_allocator [system] { header "__memory_resource/polymorphic_allocator.h" }
module cxx03_std_private_memory_resource_pool_options [system] { header "__memory_resource/pool_options.h" }
module cxx03_std_private_memory_resource_synchronized_pool_resource [system] {
header "__memory_resource/synchronized_pool_resource.h"
export *
}
module cxx03_std_private_memory_resource_unsynchronized_pool_resource [system] { header "__memory_resource/unsynchronized_pool_resource.h" }
module cxx03_std_private_mutex_lock_guard [system] { header "__mutex/lock_guard.h" }
module cxx03_std_private_mutex_mutex [system] { header "__mutex/mutex.h" }
module cxx03_std_private_mutex_once_flag [system] { header "__mutex/once_flag.h" }
module cxx03_std_private_mutex_tag_types [system] { header "__mutex/tag_types.h" }
module cxx03_std_private_mutex_unique_lock [system] { header "__mutex/unique_lock.h" }
module cxx03_std_private_numeric_accumulate [system] { header "__numeric/accumulate.h" }
module cxx03_std_private_numeric_adjacent_difference [system] { header "__numeric/adjacent_difference.h" }
module cxx03_std_private_numeric_exclusive_scan [system] { header "__numeric/exclusive_scan.h" }
module cxx03_std_private_numeric_gcd_lcm [system] { header "__numeric/gcd_lcm.h" }
module cxx03_std_private_numeric_inclusive_scan [system] { header "__numeric/inclusive_scan.h" }
module cxx03_std_private_numeric_inner_product [system] { header "__numeric/inner_product.h" }
module cxx03_std_private_numeric_iota [system] { header "__numeric/iota.h" }
module cxx03_std_private_numeric_midpoint [system] { header "__numeric/midpoint.h" }
module cxx03_std_private_numeric_partial_sum [system] { header "__numeric/partial_sum.h" }
module cxx03_std_private_numeric_pstl [system] {
header "__numeric/pstl.h"
export *
}
module cxx03_std_private_numeric_reduce [system] { header "__numeric/reduce.h" }
module cxx03_std_private_numeric_saturation_arithmetic [system] { header "__numeric/saturation_arithmetic.h" }
module cxx03_std_private_numeric_transform_exclusive_scan [system] { header "__numeric/transform_exclusive_scan.h" }
module cxx03_std_private_numeric_transform_inclusive_scan [system] { header "__numeric/transform_inclusive_scan.h" }
module cxx03_std_private_numeric_transform_reduce [system] { header "__numeric/transform_reduce.h" }
module cxx03_std_private_pstl_backend [system] {
header "__pstl/backend.h"
export *
}
module cxx03_std_private_pstl_backend_fwd [system] {
header "__pstl/backend_fwd.h"
export *
}
module cxx03_std_private_pstl_backends_default [system] {
header "__pstl/backends/default.h"
export *
}
module cxx03_std_private_pstl_backends_libdispatch [system] {
header "__pstl/backends/libdispatch.h"
export *
}
module cxx03_std_private_pstl_backends_serial [system] {
header "__pstl/backends/serial.h"
export *
}
module cxx03_std_private_pstl_backends_std_thread [system] {
header "__pstl/backends/std_thread.h"
export *
}
module cxx03_std_private_pstl_cpu_algos_any_of [system] { header "__pstl/cpu_algos/any_of.h" }
module cxx03_std_private_pstl_cpu_algos_cpu_traits [system] { header "__pstl/cpu_algos/cpu_traits.h" }
module cxx03_std_private_pstl_cpu_algos_fill [system] { header "__pstl/cpu_algos/fill.h" }
module cxx03_std_private_pstl_cpu_algos_find_if [system] { header "__pstl/cpu_algos/find_if.h" }
module cxx03_std_private_pstl_cpu_algos_for_each [system] { header "__pstl/cpu_algos/for_each.h" }
module cxx03_std_private_pstl_cpu_algos_merge [system] { header "__pstl/cpu_algos/merge.h" }
module cxx03_std_private_pstl_cpu_algos_stable_sort [system] { header "__pstl/cpu_algos/stable_sort.h" }
module cxx03_std_private_pstl_cpu_algos_transform [system] { header "__pstl/cpu_algos/transform.h" }
module cxx03_std_private_pstl_cpu_algos_transform_reduce [system] { header "__pstl/cpu_algos/transform_reduce.h" }
module cxx03_std_private_pstl_dispatch [system] { header "__pstl/dispatch.h" }
module cxx03_std_private_pstl_handle_exception [system] { header "__pstl/handle_exception.h" }
module cxx03_std_private_queue_fwd [system] { header "__fwd/queue.h" }
module cxx03_std_private_ostream_basic_ostream [system] {
header "__ostream/basic_ostream.h"
export std_streambuf
}
module cxx03_std_private_ostream_print [system] {
header "__ostream/print.h"
export std_print
}
module cxx03_std_private_random_bernoulli_distribution [system] { header "__random/bernoulli_distribution.h" }
module cxx03_std_private_random_binomial_distribution [system] { header "__random/binomial_distribution.h" }
module cxx03_std_private_random_cauchy_distribution [system] { header "__random/cauchy_distribution.h" }
module cxx03_std_private_random_chi_squared_distribution [system] { header "__random/chi_squared_distribution.h" }
module cxx03_std_private_random_clamp_to_integral [system] { header "__random/clamp_to_integral.h" }
module cxx03_std_private_random_default_random_engine [system] { header "__random/default_random_engine.h" }
module cxx03_std_private_random_discard_block_engine [system] { header "__random/discard_block_engine.h" }
module cxx03_std_private_random_discrete_distribution [system] {
header "__random/discrete_distribution.h"
export *
}
module cxx03_std_private_random_exponential_distribution [system] { header "__random/exponential_distribution.h" }
module cxx03_std_private_random_extreme_value_distribution [system] { header "__random/extreme_value_distribution.h" }
module cxx03_std_private_random_fisher_f_distribution [system] { header "__random/fisher_f_distribution.h" }
module cxx03_std_private_random_gamma_distribution [system] { header "__random/gamma_distribution.h" }
module cxx03_std_private_random_generate_canonical [system] { header "__random/generate_canonical.h" }
module cxx03_std_private_random_geometric_distribution [system] { header "__random/geometric_distribution.h" }
module cxx03_std_private_random_independent_bits_engine [system] { header "__random/independent_bits_engine.h" }
module cxx03_std_private_random_is_seed_sequence [system] { header "__random/is_seed_sequence.h" }
module cxx03_std_private_random_is_valid [system] { header "__random/is_valid.h" }
module cxx03_std_private_random_knuth_b [system] { header "__random/knuth_b.h" }
module cxx03_std_private_random_linear_congruential_engine [system] { header "__random/linear_congruential_engine.h" }
module cxx03_std_private_random_log2 [system] { header "__random/log2.h" }
module cxx03_std_private_random_lognormal_distribution [system] { header "__random/lognormal_distribution.h" }
module cxx03_std_private_random_mersenne_twister_engine [system] { header "__random/mersenne_twister_engine.h" }
module cxx03_std_private_random_negative_binomial_distribution [system] { header "__random/negative_binomial_distribution.h" }
module cxx03_std_private_random_normal_distribution [system] { header "__random/normal_distribution.h" }
module cxx03_std_private_random_piecewise_constant_distribution [system] {
header "__random/piecewise_constant_distribution.h"
export *
}
module cxx03_std_private_random_piecewise_linear_distribution [system] {
header "__random/piecewise_linear_distribution.h"
export *
}
module cxx03_std_private_random_poisson_distribution [system] { header "__random/poisson_distribution.h" }
module cxx03_std_private_random_random_device [system] {
header "__random/random_device.h"
export *
}
module cxx03_std_private_random_ranlux [system] { header "__random/ranlux.h" }
module cxx03_std_private_random_seed_seq [system] {
header "__random/seed_seq.h"
export *
}
module cxx03_std_private_random_shuffle_order_engine [system] { header "__random/shuffle_order_engine.h" }
module cxx03_std_private_random_student_t_distribution [system] { header "__random/student_t_distribution.h" }
module cxx03_std_private_random_subtract_with_carry_engine [system] { header "__random/subtract_with_carry_engine.h" }
module cxx03_std_private_random_uniform_int_distribution [system] { header "__random/uniform_int_distribution.h" }
module cxx03_std_private_random_uniform_random_bit_generator [system] { header "__random/uniform_random_bit_generator.h" }
module cxx03_std_private_random_uniform_real_distribution [system] { header "__random/uniform_real_distribution.h" }
module cxx03_std_private_random_weibull_distribution [system] { header "__random/weibull_distribution.h" }
module cxx03_std_private_ranges_access [system] { header "__ranges/access.h" }
module cxx03_std_private_ranges_all [system] {
header "__ranges/all.h"
export std_private_functional_compose
export std_private_functional_perfect_forward
export std_private_ranges_owning_view
}
module cxx03_std_private_ranges_as_rvalue_view [system] { header "__ranges/as_rvalue_view.h" }
module cxx03_std_private_ranges_chunk_by_view [system] { header "__ranges/chunk_by_view.h" }
module cxx03_std_private_ranges_common_view [system] { header "__ranges/common_view.h" }
module cxx03_std_private_ranges_concepts [system] {
header "__ranges/concepts.h"
export std_private_iterator_concepts
}
module cxx03_std_private_ranges_container_compatible_range [system] { header "__ranges/container_compatible_range.h" }
module cxx03_std_private_ranges_counted [system] {
header "__ranges/counted.h"
export std_span
}
module cxx03_std_private_ranges_dangling [system] { header "__ranges/dangling.h" }
module cxx03_std_private_ranges_data [system] { header "__ranges/data.h" }
module cxx03_std_private_ranges_drop_view [system] { header "__ranges/drop_view.h" }
module cxx03_std_private_ranges_drop_while_view [system] { header "__ranges/drop_while_view.h" }
module cxx03_std_private_ranges_elements_view [system] { header "__ranges/elements_view.h" }
module cxx03_std_private_ranges_empty [system] { header "__ranges/empty.h" }
module cxx03_std_private_ranges_empty_view [system] { header "__ranges/empty_view.h" }
module cxx03_std_private_ranges_enable_borrowed_range [system] { header "__ranges/enable_borrowed_range.h" }
module cxx03_std_private_ranges_enable_view [system] { header "__ranges/enable_view.h" }
module cxx03_std_private_ranges_filter_view [system] {
header "__ranges/filter_view.h"
export std_private_ranges_range_adaptor
}
module cxx03_std_private_ranges_from_range [system] { header "__ranges/from_range.h" }
module cxx03_std_private_ranges_iota_view [system] { header "__ranges/iota_view.h" }
module cxx03_std_private_ranges_istream_view [system] {
header "__ranges/istream_view.h"
}
module cxx03_std_private_ranges_join_view [system] {
header "__ranges/join_view.h"
export std_private_iterator_iterator_with_data
export std_private_iterator_segmented_iterator
}
module cxx03_std_private_ranges_lazy_split_view [system] {
header "__ranges/lazy_split_view.h"
export std_private_ranges_non_propagating_cache
}
module cxx03_std_private_ranges_movable_box [system] { header "__ranges/movable_box.h" }
module cxx03_std_private_ranges_non_propagating_cache [system] { header "__ranges/non_propagating_cache.h" }
module cxx03_std_private_ranges_owning_view [system] { header "__ranges/owning_view.h" }
module cxx03_std_private_ranges_range_adaptor [system] { header "__ranges/range_adaptor.h" }
module cxx03_std_private_ranges_rbegin [system] { header "__ranges/rbegin.h" }
module cxx03_std_private_ranges_ref_view [system] { header "__ranges/ref_view.h" }
module cxx03_std_private_ranges_rend [system] { header "__ranges/rend.h" }
module cxx03_std_private_ranges_repeat_view [system] { header "__ranges/repeat_view.h" }
module cxx03_std_private_ranges_reverse_view [system] { header "__ranges/reverse_view.h" }
module cxx03_std_private_ranges_single_view [system] { header "__ranges/single_view.h" }
module cxx03_std_private_ranges_size [system] {
header "__ranges/size.h"
export std_private_type_traits_make_unsigned
}
module cxx03_std_private_ranges_split_view [system] { header "__ranges/split_view.h" }
module cxx03_std_private_ranges_subrange [system] {
header "__ranges/subrange.h"
export std_private_ranges_subrange_fwd
}
module cxx03_std_private_ranges_subrange_fwd [system] {
header "__fwd/subrange.h"
export std_private_iterator_concepts
}
module cxx03_std_private_ranges_take_view [system] { header "__ranges/take_view.h" }
module cxx03_std_private_ranges_take_while_view [system] { header "__ranges/take_while_view.h" }
module cxx03_std_private_ranges_to [system] { header "__ranges/to.h" }
module cxx03_std_private_ranges_transform_view [system] {
header "__ranges/transform_view.h"
export std_private_functional_bind_back
export std_private_functional_perfect_forward
export std_private_ranges_movable_box
}
module cxx03_std_private_ranges_view_interface [system] { header "__ranges/view_interface.h" }
module cxx03_std_private_ranges_views [system] { header "__ranges/views.h" }
module cxx03_std_private_ranges_zip_view [system] {
header "__ranges/zip_view.h"
export std_private_utility_pair
}
module cxx03_std_private_span_span_fwd [system] { header "__fwd/span.h" }
module cxx03_std_private_stack_fwd [system] { header "__fwd/stack.h" }
module cxx03_std_private_stop_token_atomic_unique_lock [system] { header "__stop_token/atomic_unique_lock.h" }
module cxx03_std_private_stop_token_intrusive_list_view [system] { header "__stop_token/intrusive_list_view.h" }
module cxx03_std_private_stop_token_intrusive_shared_ptr [system] { header "__stop_token/intrusive_shared_ptr.h" }
module cxx03_std_private_stop_token_stop_callback [system] { header "__stop_token/stop_callback.h" }
module cxx03_std_private_stop_token_stop_source [system] {
header "__stop_token/stop_source.h"
export *
}
module cxx03_std_private_stop_token_stop_state [system] {
header "__stop_token/stop_state.h"
export *
}
module cxx03_std_private_stop_token_stop_token [system] {
header "__stop_token/stop_token.h"
export *
}
module cxx03_std_private_string_char_traits [system] {
header "__string/char_traits.h"
export *
}
module cxx03_std_private_string_constexpr_c_functions [system] {
header "__string/constexpr_c_functions.h"
export std_private_type_traits_is_equality_comparable
}
module cxx03_std_private_string_extern_template_lists [system] { header "__string/extern_template_lists.h" }
module cxx03_std_private_string_string_fwd [system] { header "__fwd/string.h" }
module cxx03_std_private_string_view_string_view_fwd [system] { header "__fwd/string_view.h" }
module cxx03_std_private_system_error_errc [system] { header "__system_error/errc.h" }
module cxx03_std_private_system_error_error_category [system] { header "__system_error/error_category.h" }
module cxx03_std_private_system_error_error_code [system] {
header "__system_error/error_code.h"
export std_private_functional_hash
export std_private_functional_unary_function
}
module cxx03_std_private_system_error_error_condition [system] {
header "__system_error/error_condition.h"
export std_private_functional_hash
export std_private_functional_unary_function
}
module cxx03_std_private_system_error_system_error [system] { header "__system_error/system_error.h" }
module cxx03_std_private_thread_formatter [system] { header "__thread/formatter.h" }
module cxx03_std_private_thread_id [system] { header "__thread/id.h" }
module cxx03_std_private_thread_jthread [system] {
header "__thread/jthread.h"
export *
}
module cxx03_std_private_thread_poll_with_backoff [system] { header "__thread/poll_with_backoff.h" }
module cxx03_std_private_thread_support [system] {
header "__thread/support.h"
export *
}
module cxx03_std_private_thread_support_c11 [system] { textual header "__thread/support/c11.h" }
module cxx03_std_private_thread_support_external [system] { textual header "__thread/support/external.h" }
module cxx03_std_private_thread_support_pthread [system] { textual header "__thread/support/pthread.h" }
module cxx03_std_private_thread_support_windows [system] { textual header "__thread/support/windows.h" }
module cxx03_std_private_thread_this_thread [system] { header "__thread/this_thread.h" }
module cxx03_std_private_thread_thread [system] {
header "__thread/thread.h"
export *
}
module cxx03_std_private_thread_timed_backoff_policy [system] { header "__thread/timed_backoff_policy.h" }
module cxx03_std_private_tuple_find_index [system] { header "__tuple/find_index.h" }
module cxx03_std_private_tuple_ignore [system] { header "__tuple/ignore.h" }
module cxx03_std_private_tuple_make_tuple_types [system] { header "__tuple/make_tuple_types.h" }
module cxx03_std_private_tuple_tuple_like_no_subrange [system] {
header "__tuple/tuple_like_no_subrange.h"
}
module cxx03_std_private_tuple_sfinae_helpers [system] { header "__tuple/sfinae_helpers.h" }
module cxx03_std_private_tuple_tuple_element [system] { header "__tuple/tuple_element.h" }
module cxx03_std_private_tuple_tuple_fwd [system] { header "__fwd/tuple.h" }
module cxx03_std_private_tuple_tuple_indices [system] { header "__tuple/tuple_indices.h" }
module cxx03_std_private_tuple_tuple_like [system] {
header "__tuple/tuple_like.h"
export *
}
module cxx03_std_private_tuple_tuple_like_ext [system] { header "__tuple/tuple_like_ext.h" }
module cxx03_std_private_tuple_tuple_size [system] { header "__tuple/tuple_size.h" }
module cxx03_std_private_tuple_tuple_types [system] { header "__tuple/tuple_types.h" }
module cxx03_std_private_type_traits_add_const [system] { header "__type_traits/add_const.h" }
module cxx03_std_private_type_traits_add_cv [system] { header "__type_traits/add_cv.h" }
module cxx03_std_private_type_traits_add_lvalue_reference [system] {
header "__type_traits/add_lvalue_reference.h"
export std_private_type_traits_is_referenceable
}
module cxx03_std_private_type_traits_add_pointer [system] { header "__type_traits/add_pointer.h" }
module cxx03_std_private_type_traits_add_rvalue_reference [system] { header "__type_traits/add_rvalue_reference.h" }
module cxx03_std_private_type_traits_add_volatile [system] { header "__type_traits/add_volatile.h" }
module cxx03_std_private_type_traits_aligned_storage [system] { header "__type_traits/aligned_storage.h" }
module cxx03_std_private_type_traits_aligned_union [system] { header "__type_traits/aligned_union.h" }
module cxx03_std_private_type_traits_alignment_of [system] { header "__type_traits/alignment_of.h" }
module cxx03_std_private_type_traits_can_extract_key [system] { header "__type_traits/can_extract_key.h" }
module cxx03_std_private_type_traits_common_reference [system] {
header "__type_traits/common_reference.h"
export std_private_type_traits_remove_cvref
}
module cxx03_std_private_type_traits_common_type [system] {
header "__type_traits/common_type.h"
export std_private_utility_declval
}
module cxx03_std_private_type_traits_conditional [system] { header "__type_traits/conditional.h" }
module cxx03_std_private_type_traits_conjunction [system] { header "__type_traits/conjunction.h" }
module cxx03_std_private_type_traits_copy_cv [system] { header "__type_traits/copy_cv.h" }
module cxx03_std_private_type_traits_copy_cvref [system] { header "__type_traits/copy_cvref.h" }
module cxx03_std_private_type_traits_datasizeof [system] { header "__type_traits/datasizeof.h" }
module cxx03_std_private_type_traits_decay [system] {
header "__type_traits/decay.h"
export std_private_type_traits_add_pointer
}
module cxx03_std_private_type_traits_dependent_type [system] { header "__type_traits/dependent_type.h" }
module cxx03_std_private_type_traits_desugars_to [system] { header "__type_traits/desugars_to.h" }
module cxx03_std_private_type_traits_disjunction [system] { header "__type_traits/disjunction.h" }
module cxx03_std_private_type_traits_enable_if [system] { header "__type_traits/enable_if.h" }
module cxx03_std_private_type_traits_extent [system] { header "__type_traits/extent.h" }
module cxx03_std_private_type_traits_has_unique_object_representation [system] { header "__type_traits/has_unique_object_representation.h" }
module cxx03_std_private_type_traits_has_virtual_destructor [system] { header "__type_traits/has_virtual_destructor.h" }
module cxx03_std_private_type_traits_integral_constant [system] { header "__type_traits/integral_constant.h" }
module cxx03_std_private_type_traits_invoke [system] {
header "__type_traits/invoke.h"
export std_private_type_traits_conditional
export std_private_type_traits_decay
export std_private_type_traits_decay
export std_private_type_traits_enable_if
export std_private_type_traits_is_base_of
export std_private_type_traits_is_core_convertible
export std_private_type_traits_is_reference_wrapper
export std_private_type_traits_is_same
export std_private_type_traits_is_void
export std_private_type_traits_nat
export std_private_type_traits_remove_cv
}
module cxx03_std_private_type_traits_is_abstract [system] { header "__type_traits/is_abstract.h" }
module cxx03_std_private_type_traits_is_aggregate [system] { header "__type_traits/is_aggregate.h" }
module cxx03_std_private_type_traits_is_allocator [system] { header "__type_traits/is_allocator.h" }
module cxx03_std_private_type_traits_is_always_bitcastable [system] { header "__type_traits/is_always_bitcastable.h" }
module cxx03_std_private_type_traits_is_arithmetic [system] {
header "__type_traits/is_arithmetic.h"
export std_private_type_traits_integral_constant
}
module cxx03_std_private_type_traits_is_array [system] {
header "__type_traits/is_array.h"
export std_private_type_traits_integral_constant
}
module cxx03_std_private_type_traits_is_assignable [system] { header "__type_traits/is_assignable.h" }
module cxx03_std_private_type_traits_is_base_of [system] { header "__type_traits/is_base_of.h" }
module cxx03_std_private_type_traits_is_bounded_array [system] { header "__type_traits/is_bounded_array.h" }
module cxx03_std_private_type_traits_is_callable [system] {
header "__type_traits/is_callable.h"
export std_private_type_traits_integral_constant
}
module cxx03_std_private_type_traits_is_char_like_type [system] { header "__type_traits/is_char_like_type.h" }
module cxx03_std_private_type_traits_is_class [system] { header "__type_traits/is_class.h" }
module cxx03_std_private_type_traits_is_compound [system] { header "__type_traits/is_compound.h" }
module cxx03_std_private_type_traits_is_const [system] { header "__type_traits/is_const.h" }
module cxx03_std_private_type_traits_is_constant_evaluated [system] { header "__type_traits/is_constant_evaluated.h" }
module cxx03_std_private_type_traits_is_constructible [system] { header "__type_traits/is_constructible.h" }
module cxx03_std_private_type_traits_is_convertible [system] {
header "__type_traits/is_convertible.h"
export std_private_type_traits_is_array
}
module cxx03_std_private_type_traits_is_copy_assignable [system] { header "__type_traits/is_copy_assignable.h" }
module cxx03_std_private_type_traits_is_copy_constructible [system] { header "__type_traits/is_copy_constructible.h" }
module cxx03_std_private_type_traits_is_core_convertible [system] {
header "__type_traits/is_core_convertible.h"
export std_private_type_traits_integral_constant
}
module cxx03_std_private_type_traits_is_destructible [system] { header "__type_traits/is_destructible.h" }
module cxx03_std_private_type_traits_is_empty [system] { header "__type_traits/is_empty.h" }
module cxx03_std_private_type_traits_is_enum [system] {
header "__type_traits/is_enum.h"
export std_private_type_traits_integral_constant
}
module cxx03_std_private_type_traits_is_equality_comparable [system] {
header "__type_traits/is_equality_comparable.h"
export std_private_type_traits_integral_constant
}
module cxx03_std_private_type_traits_is_execution_policy [system] {
header "__type_traits/is_execution_policy.h"
export std_private_type_traits_remove_cvref
}
module cxx03_std_private_type_traits_is_final [system] { header "__type_traits/is_final.h" }
module cxx03_std_private_type_traits_is_floating_point [system] { header "__type_traits/is_floating_point.h" }
module cxx03_std_private_type_traits_is_function [system] { header "__type_traits/is_function.h" }
module cxx03_std_private_type_traits_is_fundamental [system] { header "__type_traits/is_fundamental.h" }
module cxx03_std_private_type_traits_is_implicitly_default_constructible [system] {
header "__type_traits/is_implicitly_default_constructible.h"
export std_private_type_traits_integral_constant
}
module cxx03_std_private_type_traits_is_integral [system] { header "__type_traits/is_integral.h" }
module cxx03_std_private_type_traits_is_literal_type [system] { header "__type_traits/is_literal_type.h" }
module cxx03_std_private_type_traits_is_member_pointer [system] { header "__type_traits/is_member_pointer.h" }
module cxx03_std_private_type_traits_is_nothrow_assignable [system] { header "__type_traits/is_nothrow_assignable.h" }
module cxx03_std_private_type_traits_is_nothrow_constructible [system] {
header "__type_traits/is_nothrow_constructible.h"
export std_private_type_traits_integral_constant
}
module cxx03_std_private_type_traits_is_nothrow_convertible [system] { header "__type_traits/is_nothrow_convertible.h" }
module cxx03_std_private_type_traits_is_nothrow_destructible [system] {
header "__type_traits/is_nothrow_destructible.h"
export std_private_type_traits_is_destructible
}
module cxx03_std_private_type_traits_is_null_pointer [system] {
header "__type_traits/is_null_pointer.h"
export std_cstddef
}
module cxx03_std_private_type_traits_is_object [system] {
header "__type_traits/is_object.h"
export std_private_type_traits_is_scalar
}
module cxx03_std_private_type_traits_is_pod [system] { header "__type_traits/is_pod.h" }
module cxx03_std_private_type_traits_is_pointer [system] { header "__type_traits/is_pointer.h" }
module cxx03_std_private_type_traits_is_polymorphic [system] { header "__type_traits/is_polymorphic.h" }
module cxx03_std_private_type_traits_is_primary_template [system] {
header "__type_traits/is_primary_template.h"
export std_private_type_traits_enable_if
}
module cxx03_std_private_type_traits_is_reference [system] { header "__type_traits/is_reference.h" }
module cxx03_std_private_type_traits_is_reference_wrapper [system] { header "__type_traits/is_reference_wrapper.h" }
module cxx03_std_private_type_traits_is_referenceable [system] { header "__type_traits/is_referenceable.h" }
module cxx03_std_private_type_traits_is_same [system] {
header "__type_traits/is_same.h"
export std_private_type_traits_integral_constant
}
module cxx03_std_private_type_traits_is_scalar [system] {
header "__type_traits/is_scalar.h"
export std_private_type_traits_is_null_pointer
}
module cxx03_std_private_type_traits_is_signed [system] { header "__type_traits/is_signed.h" }
module cxx03_std_private_type_traits_is_signed_integer [system] { header "__type_traits/is_signed_integer.h" }
module cxx03_std_private_type_traits_is_specialization [system] { header "__type_traits/is_specialization.h" }
module cxx03_std_private_type_traits_is_standard_layout [system] { header "__type_traits/is_standard_layout.h" }
module cxx03_std_private_type_traits_is_swappable [system] {
header "__type_traits/is_swappable.h"
export std_private_type_traits_is_move_constructible
}
module cxx03_std_private_type_traits_is_trivial [system] { header "__type_traits/is_trivial.h" }
module cxx03_std_private_type_traits_is_trivially_assignable [system] { header "__type_traits/is_trivially_assignable.h" }
module cxx03_std_private_type_traits_is_trivially_constructible [system] { header "__type_traits/is_trivially_constructible.h" }
module cxx03_std_private_type_traits_is_trivially_copyable [system] { header "__type_traits/is_trivially_copyable.h" }
module cxx03_std_private_type_traits_is_trivially_destructible [system] { header "__type_traits/is_trivially_destructible.h" }
module cxx03_std_private_type_traits_is_trivially_lexicographically_comparable [system] { header "__type_traits/is_trivially_lexicographically_comparable.h" }
module cxx03_std_private_type_traits_is_trivially_relocatable [system] { header "__type_traits/is_trivially_relocatable.h" }
module cxx03_std_private_type_traits_is_unbounded_array [system] { header "__type_traits/is_unbounded_array.h" }
module cxx03_std_private_type_traits_is_union [system] { header "__type_traits/is_union.h" }
module cxx03_std_private_type_traits_is_unsigned [system] { header "__type_traits/is_unsigned.h" }
module cxx03_std_private_type_traits_is_unsigned_integer [system] { header "__type_traits/is_unsigned_integer.h" }
module cxx03_std_private_type_traits_is_valid_expansion [system] { header "__type_traits/is_valid_expansion.h" }
module cxx03_std_private_type_traits_is_void [system] {
header "__type_traits/is_void.h"
export std_private_type_traits_integral_constant
}
module cxx03_std_private_type_traits_is_volatile [system] { header "__type_traits/is_volatile.h" }
module cxx03_std_private_type_traits_lazy [system] { header "__type_traits/lazy.h" }
module cxx03_std_private_type_traits_make_32_64_or_128_bit [system] { header "__type_traits/make_32_64_or_128_bit.h" }
module cxx03_std_private_type_traits_make_const_lvalue_ref [system] { header "__type_traits/make_const_lvalue_ref.h" }
module cxx03_std_private_type_traits_make_signed [system] { header "__type_traits/make_signed.h" }
module cxx03_std_private_type_traits_make_unsigned [system] {
header "__type_traits/make_unsigned.h"
export std_private_type_traits_is_unsigned
}
module cxx03_std_private_type_traits_maybe_const [system] { header "__type_traits/maybe_const.h" }
module cxx03_std_private_type_traits_nat [system] { header "__type_traits/nat.h" }
module cxx03_std_private_type_traits_negation [system] { header "__type_traits/negation.h" }
module cxx03_std_private_type_traits_noexcept_move_assign_container [system] { header "__type_traits/noexcept_move_assign_container.h" }
module cxx03_std_private_type_traits_promote [system] { header "__type_traits/promote.h" }
module cxx03_std_private_type_traits_rank [system] { header "__type_traits/rank.h" }
module cxx03_std_private_type_traits_remove_all_extents [system] { header "__type_traits/remove_all_extents.h" }
module cxx03_std_private_type_traits_remove_const [system] { header "__type_traits/remove_const.h" }
module cxx03_std_private_type_traits_remove_const_ref [system] { header "__type_traits/remove_const_ref.h" }
module cxx03_std_private_type_traits_remove_cv [system] {
header "__type_traits/remove_cv.h"
export std_private_type_traits_remove_const
export std_private_type_traits_remove_volatile
}
module cxx03_std_private_type_traits_remove_cvref [system] { header "__type_traits/remove_cvref.h" }
module cxx03_std_private_type_traits_remove_extent [system] { header "__type_traits/remove_extent.h" }
module cxx03_std_private_type_traits_remove_pointer [system] { header "__type_traits/remove_pointer.h" }
module cxx03_std_private_type_traits_remove_reference [system] { header "__type_traits/remove_reference.h" }
module cxx03_std_private_type_traits_remove_volatile [system] { header "__type_traits/remove_volatile.h" }
module cxx03_std_private_type_traits_result_of [system] { header "__type_traits/result_of.h" }
module cxx03_std_private_type_traits_strip_signature [system] { header "__type_traits/strip_signature.h" }
module cxx03_std_private_type_traits_type_identity [system] { header "__type_traits/type_identity.h" }
module cxx03_std_private_type_traits_type_list [system] { header "__type_traits/type_list.h" }
module cxx03_std_private_type_traits_underlying_type [system] {
header "__type_traits/underlying_type.h"
export std_private_type_traits_is_enum
}
module cxx03_std_private_type_traits_unwrap_ref [system] { header "__type_traits/unwrap_ref.h" }
module cxx03_std_private_type_traits_void_t [system] { header "__type_traits/void_t.h" }
module cxx03_std_private_utility_as_const [system] { header "__utility/as_const.h" }
module cxx03_std_private_utility_as_lvalue [system] { header "__utility/as_lvalue.h" }
module cxx03_std_private_utility_auto_cast [system] {
header "__utility/auto_cast.h"
export std_private_type_traits_decay
}
module cxx03_std_private_utility_cmp [system] {
header "__utility/cmp.h"
export std_private_type_traits_make_unsigned
}
module cxx03_std_private_utility_convert_to_integral [system] { header "__utility/convert_to_integral.h" }
module cxx03_std_private_utility_declval [system] { header "__utility/declval.h" }
module cxx03_std_private_utility_empty [system] { header "__utility/empty.h" }
module cxx03_std_private_utility_exception_guard [system] { header "__utility/exception_guard.h" }
module cxx03_std_private_utility_exchange [system] { header "__utility/exchange.h" }
module cxx03_std_private_utility_forward [system] { header "__utility/forward.h" }
module cxx03_std_private_utility_forward_like [system] { header "__utility/forward_like.h" }
module cxx03_std_private_utility_in_place [system] { header "__utility/in_place.h" }
module cxx03_std_private_utility_integer_sequence [system] { header "__utility/integer_sequence.h" }
module cxx03_std_private_utility_is_pointer_in_range [system] { header "__utility/is_pointer_in_range.h" }
module cxx03_std_private_utility_is_valid_range [system] { header "__utility/is_valid_range.h" }
module cxx03_std_private_utility_move [system] {
header "__utility/move.h"
export std_private_type_traits_is_copy_constructible
export std_private_type_traits_is_nothrow_move_constructible
export std_private_type_traits_remove_reference
}
module cxx03_std_private_utility_no_destroy [system] { header "__utility/no_destroy.h" }
module cxx03_std_private_utility_pair [system] {
header "__utility/pair.h"
export std_private_ranges_subrange_fwd
export std_private_tuple_pair_like
export std_private_type_traits_is_assignable
export std_private_type_traits_is_constructible
export std_private_type_traits_is_convertible
export std_private_type_traits_is_copy_assignable
export std_private_type_traits_is_move_assignable
export std_private_type_traits_is_nothrow_copy_constructible
export std_private_type_traits_is_nothrow_default_constructible
export std_private_type_traits_is_nothrow_move_assignable
export std_private_utility_pair_fwd
}
module cxx03_std_private_utility_pair_fwd [system] { header "__fwd/pair.h" }
module cxx03_std_private_utility_piecewise_construct [system] { header "__utility/piecewise_construct.h" }
module cxx03_std_private_utility_priority_tag [system] { header "__utility/priority_tag.h" }
module cxx03_std_private_utility_private_constructor_tag [system] { header "__utility/private_constructor_tag.h" }
module cxx03_std_private_utility_rel_ops [system] { header "__utility/rel_ops.h" }
module cxx03_std_private_utility_small_buffer [system] { header "__utility/small_buffer.h" }
module cxx03_std_private_utility_swap [system] {
header "__utility/swap.h"
export std_private_type_traits_is_swappable
}
module cxx03_std_private_utility_to_underlying [system] { header "__utility/to_underlying.h" }
module cxx03_std_private_utility_unreachable [system] { header "__utility/unreachable.h" }
module cxx03_std_private_variant_monostate [system] { header "__variant/monostate.h" }
module cxx03_std_private_vector_fwd [system] { header "__fwd/vector.h" }
|