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
|
<!DOCTYPE html>
<html lang="en" dir="ltr" class="client-nojs">
<head>
<title>std Symbol Index - cppreference.com</title>
<meta charset="UTF-8" />
<meta name="generator" content="MediaWiki 1.21.2" />
<link rel="alternate" type="application/x-wiki" title="Edit" href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit" />
<link rel="edit" title="Edit" href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit" />
<link rel="shortcut icon" href="../../favicon.ico" />
<link rel="search" type="application/opensearchdescription+xml" href="../../mwiki/opensearch_desc.php" title="cppreference.com (en)" />
<link rel="EditURI" type="application/rsd+xml" href="http://en.cppreference.com/mwiki/api.php?action=rsd" />
<link rel="alternate" type="application/atom+xml" title="cppreference.com Atom feed" href="http://en.cppreference.com/mwiki/index.php?title=Special:RecentChanges&feed=atom" />
<link rel="stylesheet" href="../../mwiki/load.php%3Fdebug=false&lang=en&modules=ext.gadget.ColiruCompiler%257Cext.rtlcite%257Cmediawiki.legacy.commonPrint%252Cshared%257Cskins.cppreference2&only=styles&skin=cppreference2&*.css" />
<meta name="ResourceLoaderDynamicStyles" content="" />
<link rel="stylesheet" href="../../mwiki/load.php%3Fdebug=false&lang=en&modules=site&only=styles&skin=cppreference2&*.css" />
<style>a:lang(ar),a:lang(ckb),a:lang(fa),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}#toc{display:none}.editsection{display:none}
/* cache key: mwiki1-mwiki_en_:resourceloader:filter:minify-css:7:472787eddcf4605d11de8c7ef047234f */</style>
<script src="../../mwiki/load.php%3Fdebug=false&lang=en&modules=startup&only=scripts&skin=cppreference2&*"></script>
<script>if(window.mw){
mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"cpp/symbol_index","wgTitle":"cpp/symbol index","wgCurRevisionId":90856,"wgArticleId":15682,"wgIsArticle":true,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":[],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"cpp/symbol_index","wgRestrictionEdit":[],"wgRestrictionMove":[]});
}</script><script>if(window.mw){
mw.loader.implement("user.options",function(){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"disablesuggest":0,"editfont":"default","editondblclick":0,"editsection":0,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"externaldiff":0,"externaleditor":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"justify":0,"math":1,"minordefault":0,"newpageshidepatrolled":0,"nocache":0,"noconvertlink":0,"norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"quickbar":5,"rcdays":7,"rclimit":50,"rememberpassword":0,"rows":25,"searchlimit":20,"showhiddencats":0,"showjumplinks":1,"shownumberswatching":1,"showtoc":0,"showtoolbar":1,"skin":"cppreference2","stubthreshold":0,"thumbsize":2,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":0,"watchdefault":0,"watchdeletion":0,
"watchlistdays":3,"watchlisthideanons":0,"watchlisthidebots":0,"watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,"variant":"en","language":"en","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":false,"searchNs15":false,"gadget-ColiruCompiler":1});;},{},{});mw.loader.implement("user.tokens",function(){mw.user.tokens.set({"editToken":"+\\","patrolToken":false,"watchToken":false});;},{},{});
/* cache key: mwiki1-mwiki_en_:resourceloader:filter:minify-js:7:ca03345b1e2c4d90a25d968753a73b92 */
}</script>
<script>if(window.mw){
mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax"]);
}</script>
<!--[if lt IE 7]><style type="text/css">body{behavior:url("/mwiki/skins/cppreference2/csshover.min.htc")}</style><![endif]--></head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-cpp_symbol_index skin-cppreference2 action-view cpp-navbar">
<!-- header -->
<div id="mw-head" class="noprint">
<div id="cpp-head-first-base">
<div id="cpp-head-first">
<h5><a href="../../index.html">
cppreference.com </a></h5>
<div id="cpp-head-search">
<!-- 0 -->
<div id="p-search">
<h5><label for="searchInput">Search</label></h5>
<form action="http://en.cppreference.com/mwiki/index.php" id="searchform">
<input type='hidden' name="title" value="Special:Search"/>
<div id="simpleSearch">
<input name="search" title="Search cppreference.com [f]" accesskey="f" id="searchInput" /> <button type="submit" name="button" title="Search the pages for this text" id="searchButton"><img src="../../mwiki/skins/cppreference2/images/search-ltr.png%3F303" alt="Search" /></button> </div>
</form>
</div>
<!-- /0 -->
</div>
<div id="cpp-head-personal">
<!-- 0 -->
<div id="p-personal" class="">
<span id="pt-createaccount"><a href="http://en.cppreference.com/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Fsymbol+index&type=signup">Create account</a></span> <div class="menu">
<ul>
<li id="pt-login"><a href="http://en.cppreference.com/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Fsymbol+index" title="You are encouraged to log in; however, it is not mandatory [o]" accesskey="o">Log in</a></li> </ul>
</div>
</div>
<!-- /0 -->
</div>
</div>
</div>
<div id="cpp-head-second-base">
<div id="cpp-head-second">
<div id="cpp-head-tools-left">
<!-- 0 -->
<div id="p-namespaces" class="vectorTabs">
<h5>Namespaces</h5>
<ul>
<li id="ca-nstab-main" class="selected"><span><a href="symbol_index.html" title="View the content page [c]" accesskey="c">Page</a></span></li>
<li id="ca-talk"><span><a href="http://en.cppreference.com/w/Talk:cpp/symbol_index" title="Discussion about the content page [t]" accesskey="t">Discussion</a></span></li>
</ul>
</div>
<!-- /0 -->
<!-- 1 -->
<div id="p-variants" class="vectorMenu emptyPortlet">
<h5><span>Variants</span><a href="symbol_index.html#"></a></h5>
<div class="menu">
<ul>
</ul>
</div>
</div>
<!-- /1 -->
</div>
<div id="cpp-head-tools-right">
<!-- 0 -->
<div id="p-views" class="vectorTabs">
<h5>Views</h5>
<ul>
<li id="ca-view" class="selected"><span><a href="symbol_index.html" >View</a></span></li>
<li id="ca-edit"><span><a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit" title="You can edit this page. Please use the preview button before saving [e]" accesskey="e">Edit</a></span></li>
<li id="ca-history" class="collapsible"><span><a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=history" title="Past revisions of this page [h]" accesskey="h">History</a></span></li>
</ul>
</div>
<!-- /0 -->
<!-- 1 -->
<div id="p-cactions" class="vectorMenu emptyPortlet">
<h5><span>Actions</span><a href="symbol_index.html#"></a></h5>
<div class="menu">
<ul>
</ul>
</div>
</div>
<!-- /1 -->
</div>
</div>
</div>
</div>
<!-- /header -->
<!-- content -->
<div id="cpp-content-base">
<div id="content">
<a id="top"></a>
<div id="mw-js-message" style="display:none;"></div>
<!-- firstHeading -->
<h1 id="firstHeading" class="firstHeading">std Symbol Index</h1>
<!-- /firstHeading -->
<!-- bodyContent -->
<div id="bodyContent">
<!-- tagline -->
<div id="siteSub">From cppreference.com</div>
<!-- /tagline -->
<!-- subtitle -->
<div id="contentSub"><span class="subpages">< <a href="../cpp.html" title="cpp">cpp</a></span></div>
<!-- /subtitle -->
<!-- bodycontent -->
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="t-navbar" style=""><div class="t-navbar-sep"> </div><div class="t-navbar-head"><a href="../cpp.html" title="cpp"> C++</a><div class="t-navbar-menu"><div><div><table class="t-nv-begin" cellpadding="0" style="line-height:1.1em;">
<tr class="t-nv"><td colspan="5"> <a href="language.1.html" title="cpp/language"> Language</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="header.html" title="cpp/header"> Standard library headers</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="concept.html" title="cpp/concept"> Concepts</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="utility.html" title="cpp/utility"> Utilities library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="string.html" title="cpp/string"> Strings library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="container.html" title="cpp/container"> Containers library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="algorithm.html" title="cpp/algorithm"> Algorithms library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="iterator.html" title="cpp/iterator"> Iterators library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="numeric.html" title="cpp/numeric"> Numerics library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="io.html" title="cpp/io"> Input/output library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="locale.html" title="cpp/locale"> Localizations library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="regex.html" title="cpp/regex"> Regular expressions library</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="atomic.html" title="cpp/atomic"> Atomic operations library</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="thread.html" title="cpp/thread"> Thread support library</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="filesystem.html" title="cpp/filesystem"> Filesystem library</a> <span class="t-mark-rev t-since-cxx17">(C++17)</span> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="experimental.html" title="cpp/experimental"> Technical Specifications</a> </td></tr>
</table></div><div><span class="editsection noprint plainlinks" title="Edit this template"><a rel="nofollow" class="external text" href="http://en.cppreference.com/mwiki/index.php?title=Template:cpp/navbar_content&action=edit">[edit]</a></span></div></div></div></div><div class="t-navbar-sep"> </div></div>
<p><br />
</p><p>This page tries to list all the symbols that are available from the <i>Standard Library</i> in the namespace <i>std::</i>. The symbols are written as follows:
</p>
<ul>
<li>Function names with <i>()</i>.</li>
<li>Templates with <i><></i>.</li>
</ul>
<p>Symbols that also exist in C and have been imported into the <i>std::</i> namespace for C++ are not listed here.
</p><p>Symbols from std::'s sub-namespaces (e.g. <code>chrono</code>) are not listed here, but the namespace names are the links to the corresponding pages.
</p>
<table id="toc" class="toc"><tr><td><div id="toctitle"><h2>Contents</h2></div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="symbol_index.html#A_B_C_D_E_F_G_H_I_J_K_L_M_N_O_P_Q_R_S_T_U_V_W_X_Y_Z"><span class="tocnumber">1</span> <span class="toctext">A B C D E F G H I J K L M N O P Q R S T U V W X Y Z</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="symbol_index.html#A"><span class="tocnumber">2</span> <span class="toctext">A</span></a></li>
<li class="toclevel-1 tocsection-3"><a href="symbol_index.html#B"><span class="tocnumber">3</span> <span class="toctext">B</span></a></li>
<li class="toclevel-1 tocsection-4"><a href="symbol_index.html#C"><span class="tocnumber">4</span> <span class="toctext">C</span></a></li>
<li class="toclevel-1 tocsection-5"><a href="symbol_index.html#D"><span class="tocnumber">5</span> <span class="toctext">D</span></a></li>
<li class="toclevel-1 tocsection-6"><a href="symbol_index.html#E"><span class="tocnumber">6</span> <span class="toctext">E</span></a></li>
<li class="toclevel-1 tocsection-7"><a href="symbol_index.html#F"><span class="tocnumber">7</span> <span class="toctext">F</span></a></li>
<li class="toclevel-1 tocsection-8"><a href="symbol_index.html#G"><span class="tocnumber">8</span> <span class="toctext">G</span></a></li>
<li class="toclevel-1 tocsection-9"><a href="symbol_index.html#H"><span class="tocnumber">9</span> <span class="toctext">H</span></a></li>
<li class="toclevel-1 tocsection-10"><a href="symbol_index.html#I"><span class="tocnumber">10</span> <span class="toctext">I</span></a></li>
<li class="toclevel-1 tocsection-11"><a href="symbol_index.html#J"><span class="tocnumber">11</span> <span class="toctext">J</span></a></li>
<li class="toclevel-1 tocsection-12"><a href="symbol_index.html#K"><span class="tocnumber">12</span> <span class="toctext">K</span></a></li>
<li class="toclevel-1 tocsection-13"><a href="symbol_index.html#L"><span class="tocnumber">13</span> <span class="toctext">L</span></a></li>
<li class="toclevel-1 tocsection-14"><a href="symbol_index.html#M"><span class="tocnumber">14</span> <span class="toctext">M</span></a></li>
<li class="toclevel-1 tocsection-15"><a href="symbol_index.html#N"><span class="tocnumber">15</span> <span class="toctext">N</span></a></li>
<li class="toclevel-1 tocsection-16"><a href="symbol_index.html#O"><span class="tocnumber">16</span> <span class="toctext">O</span></a></li>
<li class="toclevel-1 tocsection-17"><a href="symbol_index.html#P"><span class="tocnumber">17</span> <span class="toctext">P</span></a></li>
<li class="toclevel-1 tocsection-18"><a href="symbol_index.html#Q"><span class="tocnumber">18</span> <span class="toctext">Q</span></a></li>
<li class="toclevel-1 tocsection-19"><a href="symbol_index.html#R"><span class="tocnumber">19</span> <span class="toctext">R</span></a></li>
<li class="toclevel-1 tocsection-20"><a href="symbol_index.html#S"><span class="tocnumber">20</span> <span class="toctext">S</span></a></li>
<li class="toclevel-1 tocsection-21"><a href="symbol_index.html#T"><span class="tocnumber">21</span> <span class="toctext">T</span></a></li>
<li class="toclevel-1 tocsection-22"><a href="symbol_index.html#U"><span class="tocnumber">22</span> <span class="toctext">U</span></a></li>
<li class="toclevel-1 tocsection-23"><a href="symbol_index.html#V"><span class="tocnumber">23</span> <span class="toctext">V</span></a></li>
<li class="toclevel-1 tocsection-24"><a href="symbol_index.html#W"><span class="tocnumber">24</span> <span class="toctext">W</span></a></li>
<li class="toclevel-1 tocsection-25"><a href="symbol_index.html#X"><span class="tocnumber">25</span> <span class="toctext">X</span></a></li>
<li class="toclevel-1 tocsection-26"><a href="symbol_index.html#Y"><span class="tocnumber">26</span> <span class="toctext">Y</span></a></li>
<li class="toclevel-1 tocsection-27"><a href="symbol_index.html#Z"><span class="tocnumber">27</span> <span class="toctext">Z</span></a></li>
</ul>
</td></tr></table>
<h2><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=1" title="Edit section: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z">edit</a>]</span> <span class="mw-headline" id="A_B_C_D_E_F_G_H_I_J_K_L_M_N_O_P_Q_R_S_T_U_V_W_X_Y_Z"><blockquote><tt><a href="symbol_index.html#A" title="cpp/symbol index"> A</a> <a href="symbol_index.html#B" title="cpp/symbol index"> B</a> <a href="symbol_index.html#C" title="cpp/symbol index"> C</a> <a href="symbol_index.html#D" title="cpp/symbol index"> D</a> <a href="symbol_index.html#E" title="cpp/symbol index"> E</a> <a href="symbol_index.html#F" title="cpp/symbol index"> F</a> <a href="symbol_index.html#G" title="cpp/symbol index"> G</a> <a href="symbol_index.html#H" title="cpp/symbol index"> H</a> <a href="symbol_index.html#I" title="cpp/symbol index"> I</a> <a href="symbol_index.html#J" title="cpp/symbol index"> J</a> <a href="symbol_index.html#K" title="cpp/symbol index"> K</a> <a href="symbol_index.html#L" title="cpp/symbol index"> L</a> <a href="symbol_index.html#M" title="cpp/symbol index"> M</a> <a href="symbol_index.html#N" title="cpp/symbol index"> N</a> <a href="symbol_index.html#O" title="cpp/symbol index"> O</a> <a href="symbol_index.html#P" title="cpp/symbol index"> P</a> <a href="symbol_index.html#Q" title="cpp/symbol index"> Q</a> <a href="symbol_index.html#R" title="cpp/symbol index"> R</a> <a href="symbol_index.html#S" title="cpp/symbol index"> S</a> <a href="symbol_index.html#T" title="cpp/symbol index"> T</a> <a href="symbol_index.html#U" title="cpp/symbol index"> U</a> <a href="symbol_index.html#V" title="cpp/symbol index"> V</a> <a href="symbol_index.html#W" title="cpp/symbol index"> W</a> <a href="symbol_index.html#X" title="cpp/symbol index"> X</a> <a href="symbol_index.html#Y" title="cpp/symbol index"> Y</a> <a href="symbol_index.html#Z" title="cpp/symbol index"> Z</a> </tt></blockquote></span></h2>
<p><br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=2" title="Edit section: A">edit</a>]</span> <span class="mw-headline" id="A">A</span></h1>
<p><a href="numeric/math/abs.html" title="cpp/numeric/math/abs"> <code>abs()</code></a> (int) <br />
<a href="numeric/math/fabs.html" title="cpp/numeric/math/fabs"> <code>abs()</code></a> (float) <br />
<a href="numeric/complex/abs.html" title="cpp/numeric/complex/abs"> <code>abs<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/abs.html" title="cpp/numeric/valarray/abs"> <code>abs<></code></a> (std::valarray) <br />
<a href="numeric/math/acos.html" title="cpp/numeric/math/acos"> <code>acos()</code></a> <br />
<a href="numeric/complex/acos.html" title="cpp/numeric/complex/acos"> <code>acos<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/acos.html" title="cpp/numeric/valarray/acos"> <code>acos<></code></a> (std::valarray) <br />
<a href="numeric/math/acosh.html" title="cpp/numeric/math/acosh"> <code>acosh()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/complex/acosh.html" title="cpp/numeric/complex/acosh"> <code>acosh<>()</code></a> (std::complex) <br />
<a href="algorithm/accumulate.html" title="cpp/algorithm/accumulate"> <code>accumulate()<></code></a> <br />
<a href="types/add_cv.html" title="cpp/types/add cv"> <code>add_const<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/as_const.html" title="cpp/utility/as const"> <code>add_const<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/add_cv.html" title="cpp/types/add cv"> <code>add_const_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/add_cv.html" title="cpp/types/add cv"> <code>add_cv<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/add_cv.html" title="cpp/types/add cv"> <code>add_cv_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/add_pointer.html" title="cpp/types/add pointer"> <code>add_pointer<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/add_pointer.html" title="cpp/types/add pointer"> <code>add_pointer_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/add_reference.html" title="cpp/types/add reference"> <code>add_lvalue_reference<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/add_reference.html" title="cpp/types/add reference"> <code>add_lvalue_reference_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="memory/addressof.html" title="cpp/memory/addressof"> <code>addressof<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/add_reference.html" title="cpp/types/add reference"> <code>add_rvalue_reference<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/add_reference.html" title="cpp/types/add reference"> <code>add_rvalue_reference_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/add_cv.html" title="cpp/types/add cv"> <code>add_volatile<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/add_cv.html" title="cpp/types/add cv"> <code>add_volatile_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="algorithm/adjacent_difference.html" title="cpp/algorithm/adjacent difference"> <code>adjacent_difference()<></code></a> <br />
<a href="algorithm/adjacent_find.html" title="cpp/algorithm/adjacent find"> <code>adjacent_find()<></code></a> <br />
<a href="thread/lock_tag.html" title="cpp/thread/lock tag"> <code>adopt_lock</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/lock_tag_t.html" title="cpp/thread/lock tag t"> <code>adopt_lock_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="iterator/advance.html" title="cpp/iterator/advance"> <code>advance<>()</code></a> <br />
<a href="memory/align.html" title="cpp/memory/align"> <code>align()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/aligned_storage.html" title="cpp/types/aligned storage"> <code>aligned_storage<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/aligned_storage.html" title="cpp/types/aligned storage"> <code>aligned_storage_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/aligned_union.html" title="cpp/types/aligned union"> <code>aligned_union<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/aligned_union.html" title="cpp/types/aligned union"> <code>aligned_union_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/alignment_of.html" title="cpp/types/alignment of"> <code>alignment_of<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/alignment_of.html" title="cpp/types/alignment of"> <code>alignment_of_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/new/align_val_t.html" title="cpp/memory/new/align val t"> <code>align_val_t</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/all_any_none_of.html" title="cpp/algorithm/all any none of"> <code>all_of()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/allocate_shared.html" title="cpp/memory/shared ptr/allocate shared"> <code>allocate_shared<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/allocator.html" title="cpp/memory/allocator"> <code>allocator<></code></a> <br />
<a href="memory/allocator_arg.html" title="cpp/memory/allocator arg"> <code>allocator_arg</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/allocator_arg_t.html" title="cpp/memory/allocator arg t"> <code>allocator_arg_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/allocator_traits.html" title="cpp/memory/allocator traits"> <code>allocator_traits<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/any.html" title="cpp/utility/any"> <code>any</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/any/any_cast.html" title="cpp/utility/any/any cast"> <code>any_cast<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/all_any_none_of.html" title="cpp/algorithm/all any none of"> <code>any_of()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/apply.html" title="cpp/utility/apply"> <code>apply<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/complex/arg.html" title="cpp/numeric/complex/arg"> <code>arg<>()</code></a> <br />
<a href="container/array.html" title="cpp/container/array"> <code>array<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/as_const.html" title="cpp/utility/as const"> <code>as_const<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/math/asin.html" title="cpp/numeric/math/asin"> <code>asin()</code></a> <br />
<a href="numeric/complex/asin.html" title="cpp/numeric/complex/asin"> <code>asin<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/asin.html" title="cpp/numeric/valarray/asin"> <code>asin<></code></a> (std::valarray) <br />
<a href="numeric/math/asinh.html" title="cpp/numeric/math/asinh"> <code>asinh()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/complex/asinh.html" title="cpp/numeric/complex/asinh"> <code>asinh<>()</code></a> (std::complex) <br />
<a href="numeric/special_math/assoc_laguerre.html" title="cpp/numeric/special math/assoc laguerre"> <code>assoc_laguerre()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/assoc_laguerre.html" title="cpp/numeric/special math/assoc laguerre"> <code>assoc_laguerref()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/assoc_laguerre.html" title="cpp/numeric/special math/assoc laguerre"> <code>assoc_laguerrel()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/assoc_legendre.html" title="cpp/numeric/special math/assoc legendre"> <code>assoc_legendre()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/assoc_legendre.html" title="cpp/numeric/special math/assoc legendre"> <code>assoc_legendref()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/assoc_legendre.html" title="cpp/numeric/special math/assoc legendre"> <code>assoc_legendrel()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="thread/async.html" title="cpp/thread/async"> <code>async<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/atan.html" title="cpp/numeric/math/atan"> <code>atan()</code></a> <br />
<a href="numeric/complex/atan.html" title="cpp/numeric/complex/atan"> <code>atan<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/atan.html" title="cpp/numeric/valarray/atan"> <code>atan<></code></a> (std::valarray) <br />
<a href="numeric/math/atan2.html" title="cpp/numeric/math/atan2"> <code>atan2()</code></a> <br />
<a href="numeric/valarray/atan2.html" title="cpp/numeric/valarray/atan2"> <code>atan2<></code></a> (std::valarray) <br />
<a href="numeric/math/atanh.html" title="cpp/numeric/math/atanh"> <code>atanh()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/complex/atanh.html" title="cpp/numeric/complex/atanh"> <code>atanh<>()</code></a> (std::complex) <br />
</p>
<div class="toccolours mw-collapsible mw-collapsed">
<p><a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<div class="mw-collapsible-content">
<p>atomic<> full specializations and typedefs: <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_bool</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_char</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_char16_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_char32_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int8_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int16_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int32_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int64_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int_fast8_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int_fast16_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int_fast32_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int_fast64_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int_fast8_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int_fast16_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int_fast32_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_int_fast64_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_intmax_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_intptr_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_llong</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_long</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_ptrdiff_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_schar</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_short</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_size_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uchar</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint8_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint16_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint32_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint64_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint_fast8_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint_fast16_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint_fast32_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint_fast64_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint_least8_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint_least16_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint_least32_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uint_least64_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uintmax_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_uintptr_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_ullong</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_ulong</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_ushort</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic.html" title="cpp/atomic/atomic"> <code>atomic_wchar_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
</div>
</div>
<p><a href="atomic/atomic_compare_exchange.html" title="cpp/atomic/atomic compare exchange"> <code>atomic_compare_exchange_strong<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/atomic.html" title="cpp/memory/shared ptr/atomic"> <code>atomic_compare_exchange_strong<>()</code></a> (std::shared_ptr) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_compare_exchange.html" title="cpp/atomic/atomic compare exchange"> <code>atomic_compare_exchange_strong_explicit<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/atomic.html" title="cpp/memory/shared ptr/atomic"> <code>atomic_compare_exchange_strong_explicit<>()</code></a> (std::shared_ptr) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_compare_exchange.html" title="cpp/atomic/atomic compare exchange"> <code>atomic_compare_exchange_weak<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/atomic.html" title="cpp/memory/shared ptr/atomic"> <code>atomic_compare_exchange_weak<>()</code></a> (std::shared_ptr) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_compare_exchange.html" title="cpp/atomic/atomic compare exchange"> <code>atomic_compare_exchange_weak_explicit<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/atomic.html" title="cpp/memory/shared ptr/atomic"> <code>atomic_compare_exchange_weak_explicit<>()</code></a> (std::shared_ptr) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_exchange.html" title="cpp/atomic/atomic exchange"> <code>atomic_exchange<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/atomic.html" title="cpp/memory/shared ptr/atomic"> <code>atomic_exchange<>()</code></a> (std::shared_ptr) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_exchange.html" title="cpp/atomic/atomic exchange"> <code>atomic_exchange_explicit<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/atomic.html" title="cpp/memory/shared ptr/atomic"> <code>atomic_exchange_explicit<>()</code></a> (std::shared_ptr) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_fetch_add.html" title="cpp/atomic/atomic fetch add"> <code>atomic_fetch_add<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_fetch_add.html" title="cpp/atomic/atomic fetch add"> <code>atomic_fetch_add_explicit<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_fetch_and.html" title="cpp/atomic/atomic fetch and"> <code>atomic_fetch_and<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_fetch_and.html" title="cpp/atomic/atomic fetch and"> <code>atomic_fetch_and_explicit<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_fetch_or.html" title="cpp/atomic/atomic fetch or"> <code>atomic_fetch_or<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_fetch_or.html" title="cpp/atomic/atomic fetch or"> <code>atomic_fetch_or_explicit<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_fetch_sub.html" title="cpp/atomic/atomic fetch sub"> <code>atomic_fetch_sub<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_fetch_sub.html" title="cpp/atomic/atomic fetch sub"> <code>atomic_fetch_sub_explicit<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_fetch_xor.html" title="cpp/atomic/atomic fetch xor"> <code>atomic_fetch_xor<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_fetch_xor.html" title="cpp/atomic/atomic fetch xor"> <code>atomic_fetch_xor_explicit<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_flag.html" title="cpp/atomic/atomic flag"> <code>atomic_flag</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_flag_clear.html" title="cpp/atomic/atomic flag clear"> <code>atomic_flag_clear()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_flag_clear.html" title="cpp/atomic/atomic flag clear"> <code>atomic_flag_clear_explicit()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_flag_test_and_set.html" title="cpp/atomic/atomic flag test and set"> <code>atomic_flag_test_and_set()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_flag_test_and_set.html" title="cpp/atomic/atomic flag test and set"> <code>atomic_flag_test_and_set_explicit()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/ATOMIC_FLAG_INIT.html" title="cpp/atomic/ATOMIC FLAG INIT"> <code>ATOMIC_FLAG_INIT()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_init.html" title="cpp/atomic/atomic init"> <code>atomic_init<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<div class="toccolours mw-collapsible mw-collapsed">
<p><a href="atomic/atomic_is_lock_free.html" title="cpp/atomic/atomic is lock free"> <code>atomic_is_lockfree<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span>
</p>
<div class="mw-collapsible-content">
<p>defines for atomic_is_lock_free: <br />
<a href="atomic/atomic_is_lock_free.html" title="cpp/atomic/atomic is lock free"> <code>ATOMIC_BOOL_LOCK_FREE<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_is_lock_free.html" title="cpp/atomic/atomic is lock free"> <code>ATOMIC_CHAR_LOCK_FREE<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_is_lock_free.html" title="cpp/atomic/atomic is lock free"> <code>ATOMIC_CHAR16_T_LOCK_FREE<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_is_lock_free.html" title="cpp/atomic/atomic is lock free"> <code>ATOMIC_CHAR32_T_LOCK_FREE<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_is_lock_free.html" title="cpp/atomic/atomic is lock free"> <code>ATOMIC_INT_LOCK_FREE<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_is_lock_free.html" title="cpp/atomic/atomic is lock free"> <code>ATOMIC_LLONG_LOCK_FREE<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_is_lock_free.html" title="cpp/atomic/atomic is lock free"> <code>ATOMIC_LONG_LOCK_FREE<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_is_lock_free.html" title="cpp/atomic/atomic is lock free"> <code>ATOMIC_POINTER_LOCK_FREE<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_is_lock_free.html" title="cpp/atomic/atomic is lock free"> <code>ATOMIC_SHORT_LOCK_FREE<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_is_lock_free.html" title="cpp/atomic/atomic is lock free"> <code>ATOMIC_WCHAR_T_LOCK_FREE<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
</div>
</div>
<p><a href="memory/shared_ptr/atomic.html" title="cpp/memory/shared ptr/atomic"> <code>atomic_is_lockfree<>()</code></a> (std::shared_ptr) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_load.html" title="cpp/atomic/atomic load"> <code>atomic_load<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/atomic.html" title="cpp/memory/shared ptr/atomic"> <code>atomic_load<>()</code></a> (std::shared_ptr) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_load.html" title="cpp/atomic/atomic load"> <code>atomic_load_explicit<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/atomic.html" title="cpp/memory/shared ptr/atomic"> <code>atomic_load_explicit<>()</code></a> (std::shared_ptr) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_signal_fence.html" title="cpp/atomic/atomic signal fence"> <code>atomic_signal_fence()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_store.html" title="cpp/atomic/atomic store"> <code>atomic_store<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/atomic.html" title="cpp/memory/shared ptr/atomic"> <code>atomic_store<>()</code></a> (std::shared_ptr) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_store.html" title="cpp/atomic/atomic store"> <code>atomic_store_explicit<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/atomic.html" title="cpp/memory/shared ptr/atomic"> <code>atomic_store_explicit<>()</code></a> (std::shared_ptr) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/atomic_thread_fence.html" title="cpp/atomic/atomic thread fence"> <code>atomic_thread_fence()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/ATOMIC_VAR_INIT.html" title="cpp/atomic/ATOMIC VAR INIT"> <code>ATOMIC_VAR_INIT()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>atto</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/auto_ptr.html" title="cpp/memory/auto ptr"> <code>auto_ptr<></code></a> <span class="t-mark-rev t-until-cxx17">(until C++17)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=3" title="Edit section: B">edit</a>]</span> <span class="mw-headline" id="B">B</span></h1>
<p><a href="iterator/back_inserter.html" title="cpp/iterator/back inserter"> <code>back_inserter<>()</code></a> <br />
<a href="iterator/back_insert_iterator.html" title="cpp/iterator/back insert iterator"> <code>back_insert_iterator<></code></a> <br />
<a href="memory/new/bad_alloc.html" title="cpp/memory/new/bad alloc"> <code>bad_alloc</code></a> <br />
<a href="utility/any/bad_any_cast.html" title="cpp/utility/any/bad any cast"> <code>bad_any_cast</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/new/bad_array_new_length.html" title="cpp/memory/new/bad array new length"> <code>bad_array_new_length</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/bad_cast.html" title="cpp/types/bad cast"> <code>bad_cast</code></a> <br />
<a href="error/bad_exception.html" title="cpp/error/bad exception"> <code>bad_exception</code></a> <br />
<a href="utility/functional/bad_function_call.html" title="cpp/utility/functional/bad function call"> <code>bad_function_call</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/optional/bad_optional_access.html" title="cpp/utility/optional/bad optional access"> <code>bad_optional_access</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/bad_typeid.html" title="cpp/types/bad typeid"> <code>bad_typeid</code></a> <br />
<a href="utility/variant/bad_variant_access.html" title="cpp/utility/variant/bad variant access"> <code>bad_variant_access</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/bad_weak_ptr.html" title="cpp/memory/bad weak ptr"> <code>bad_weak_ptr</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/basic_filebuf.html" title="cpp/io/basic filebuf"> <code>basic_filebuf<></code></a> <br />
<a href="io/basic_fstream.html" title="cpp/io/basic fstream"> <code>basic_fstream<></code></a> <br />
<a href="io/basic_ifstream.html" title="cpp/io/basic ifstream"> <code>basic_ifstream<></code></a> <br />
<a href="io/basic_istream.html" title="cpp/io/basic istream"> <code>basic_istream<></code></a> <br />
<a href="io/basic_ios.html" title="cpp/io/basic ios"> <code>basic_ios<></code></a> <br />
<a href="io/basic_iostream.html" title="cpp/io/basic iostream"> <code>basic_iostream</code></a> <br />
<a href="io/basic_istringstream.html" title="cpp/io/basic istringstream"> <code>basic_istringstream<></code></a> <br />
<a href="io/basic_ofstream.html" title="cpp/io/basic ofstream"> <code>basic_ofstream<></code></a> <br />
<a href="io/basic_ostream.html" title="cpp/io/basic ostream"> <code>basic_ostream<></code></a> <br />
<a href="io/basic_ostringstream.html" title="cpp/io/basic ostringstream"> <code>basic_ostringstream<></code></a> <br />
<a href="regex/basic_regex.html" title="cpp/regex/basic regex"> <code>basic_regex<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/basic_streambuf.html" title="cpp/io/basic streambuf"> <code>basic_streambuf<></code></a> <br />
<a href="string/basic_string.html" title="cpp/string/basic string"> <code>basic_string<></code></a> <br />
<a href="io/basic_stringbuf.html" title="cpp/io/basic stringbuf"> <code>basic_stringbuf<></code></a> <br />
<a href="io/basic_stringstream.html" title="cpp/io/basic stringstream"> <code>basic_stringstream<></code></a> <br />
<a href="string/basic_string_view.html" title="cpp/string/basic string view"> <code>basic_string_view<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="iterator/begin.html" title="cpp/iterator/begin"> <code>begin<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> (iterator)<br />
<a href="numeric/random/bernoulli_distribution.html" title="cpp/numeric/random/bernoulli distribution"> <code>bernoulli_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/special_math/beta.html" title="cpp/numeric/special math/beta"> <code>beta()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/beta.html" title="cpp/numeric/special math/beta"> <code>betaf()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/beta.html" title="cpp/numeric/special math/beta"> <code>betal()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="iterator/iterator_tags.html" title="cpp/iterator/iterator tags"> <code>bidirectional_iterator_tag</code></a> <br />
<a href="algorithm/binary_search.html" title="cpp/algorithm/binary search"> <code>binary_search()<></code></a> <br />
<a href="utility/functional/bind.html" title="cpp/utility/functional/bind"> <code>bind<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/binomial_distribution.html" title="cpp/numeric/random/binomial distribution"> <code>binomial_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/bit_and.html" title="cpp/utility/functional/bit and"> <code>bit_and<></code></a> <br />
<a href="utility/functional/bit_or.html" title="cpp/utility/functional/bit or"> <code>bit_or<></code></a> <br />
<a href="utility/functional/bit_not.html" title="cpp/utility/functional/bit not"> <code>bit_not<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="utility/bitset.html" title="cpp/utility/bitset"> <code>bitset<></code></a> <br />
<a href="utility/functional/bit_xor.html" title="cpp/utility/functional/bit xor"> <code>bit_xor<></code></a> <br />
<a href="io/manip/boolalpha.html" title="cpp/io/manip/boolalpha"> <code>boolalpha()</code></a> <br />
<a href="types/integral_constant.html" title="cpp/types/integral constant"> <code>bool_constant<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/functional/boyer_moore_horspool_searcher.html" title="cpp/utility/functional/boyer moore horspool searcher"> <code>boyer_moore_horspool_searcher<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/functional/boyer_moore_searcher.html" title="cpp/utility/functional/boyer moore searcher"> <code>boyer_moore_searcher<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/byte.html" title="cpp/types/byte"> <code>byte</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=4" title="Edit section: C">edit</a>]</span> <span class="mw-headline" id="C">C</span></h1>
<p><a href="thread/call_once.html" title="cpp/thread/call once"> <code>call_once<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/cauchy_distribution.html" title="cpp/numeric/random/cauchy distribution"> <code>cauchy_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="iterator/begin.html" title="cpp/iterator/begin"> <code>cbegin<>()</code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="numeric/math/cbrt.html" title="cpp/numeric/math/cbrt"> <code>cbrt()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/ceil.html" title="cpp/numeric/math/ceil"> <code>ceil()</code></a> <br />
<a href="iterator/end.html" title="cpp/iterator/end"> <code>cend<>()</code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>centi</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/cerr.html" title="cpp/io/cerr"> <code>cerr</code></a> <br />
<a href="string/char_traits.html" title="cpp/string/char traits"> <code>char_traits<></code></a> <br />
<a href="numeric/random/chi_squared_distribution.html" title="cpp/numeric/random/chi squared distribution"> <code>chi_squared_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
▶ <a href="symbol_index/chrono.html" title="cpp/symbol index/chrono"> <code>chrono</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/cin.html" title="cpp/io/cin"> <code>cin</code></a> <br />
<a href="algorithm/clamp.html" title="cpp/algorithm/clamp"> <code>clamp()<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="io/clog.html" title="cpp/io/clog"> <code>clog</code></a> <br />
<a href="regex/match_results.html" title="cpp/regex/match results"> <code>cmatch</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/codecvt.html" title="cpp/locale/codecvt"> <code>codecvt<></code></a> <br />
<a href="locale/codecvt_base.html" title="cpp/locale/codecvt base"> <code>codecvt_base</code></a> <br />
<a href="locale/codecvt_byname.html" title="cpp/locale/codecvt byname"> <code>codecvt_byname<></code></a> <br />
<a href="locale/codecvt_mode.html" title="cpp/locale/codecvt mode"> <code>codecvt_mode</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/codecvt_utf16.html" title="cpp/locale/codecvt utf16"> <code>codecvt_utf16<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/codecvt_utf8.html" title="cpp/locale/codecvt utf8"> <code>codecvt_utf8<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/codecvt_utf8_utf16.html" title="cpp/locale/codecvt utf8 utf16"> <code>codecvt_utf8_utf16<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/collate.html" title="cpp/locale/collate"> <code>collate<></code></a> <br />
<a href="locale/collate_byname.html" title="cpp/locale/collate byname"> <code>collate_byname<></code></a> <br />
<a href="numeric/complex.html" title="cpp/numeric/complex"> <code>complex<></code></a> <br />
<a href="types/common_type.html" title="cpp/types/common type"> <code>common_type<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/common_type.html" title="cpp/types/common type"> <code>common_type_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="numeric/special_math/comp_ellint_1.html" title="cpp/numeric/special math/comp ellint 1"> <code>comp_ellint_1()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/comp_ellint_1.html" title="cpp/numeric/special math/comp ellint 1"> <code>comp_ellint_1f()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/comp_ellint_1.html" title="cpp/numeric/special math/comp ellint 1"> <code>comp_ellint_1l()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/comp_ellint_2.html" title="cpp/numeric/special math/comp ellint 2"> <code>comp_ellint_2()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/comp_ellint_2.html" title="cpp/numeric/special math/comp ellint 2"> <code>comp_ellint_2f()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/comp_ellint_2.html" title="cpp/numeric/special math/comp ellint 2"> <code>comp_ellint_2l()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/comp_ellint_3.html" title="cpp/numeric/special math/comp ellint 3"> <code>comp_ellint_3()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/comp_ellint_3.html" title="cpp/numeric/special math/comp ellint 3"> <code>comp_ellint_3f()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/comp_ellint_3.html" title="cpp/numeric/special math/comp ellint 3"> <code>comp_ellint_3l()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/conditional.html" title="cpp/types/conditional"> <code>conditional<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/conditional.html" title="cpp/types/conditional"> <code>conditional_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="thread/condition_variable.html" title="cpp/thread/condition variable"> <code>condition_variable</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/condition_variable_any.html" title="cpp/thread/condition variable any"> <code>condition_variable_any</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/conjunction.html" title="cpp/types/conjunction"> <code>conjunction<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/conjunction.html" title="cpp/types/conjunction"> <code>conjunction_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/complex/conj.html" title="cpp/numeric/complex/conj"> <code>conj<>()</code></a> <br />
<a href="locale/codecvt_mode.html" title="cpp/locale/codecvt mode"> <code>consume_header</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/copy.html" title="cpp/algorithm/copy"> <code>copy()<></code></a> <br />
<a href="algorithm/copy_backward.html" title="cpp/algorithm/copy backward"> <code>copy_backward()<></code></a> <br />
<a href="algorithm/copy.html" title="cpp/algorithm/copy"> <code>copy_if()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/copy_n.html" title="cpp/algorithm/copy n"> <code>copy_n()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/copysign.html" title="cpp/numeric/math/copysign"> <code>copysign()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/pointer_cast.html" title="cpp/memory/shared ptr/pointer cast"> <code>const_pointer_cast<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/cos.html" title="cpp/numeric/math/cos"> <code>cos()</code></a> <br />
<a href="numeric/complex/cos.html" title="cpp/numeric/complex/cos"> <code>cos<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/cos.html" title="cpp/numeric/valarray/cos"> <code>cos<></code></a> (std::valarray) <br />
<a href="numeric/math/cosh.html" title="cpp/numeric/math/cosh"> <code>cosh()</code></a> <br />
<a href="numeric/complex/cosh.html" title="cpp/numeric/complex/cosh"> <code>cosh<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/cosh.html" title="cpp/numeric/valarray/cosh"> <code>cosh<></code></a> (std::valarray) <br />
<a href="algorithm/count_if.html" title="cpp/algorithm/count"> <code>count()<></code></a> <br />
<a href="algorithm/count_if.html" title="cpp/algorithm/count if" class="mw-redirect"> <code>count_if()<></code></a> <br />
<a href="io/cout.html" title="cpp/io/cout"> <code>cout</code></a> <br />
<a href="iterator/rbegin.html" title="cpp/iterator/rbegin"> <code>crbegin<>()</code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="utility/functional/ref.html" title="cpp/utility/functional/ref"> <code>cref<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_iterator.html" title="cpp/regex/regex iterator"> <code>cregex_iterator</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_token_iterator.html" title="cpp/regex/regex token iterator"> <code>cregex_token_iterator</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="iterator/rend.html" title="cpp/iterator/rend"> <code>crend<>()</code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="regex/sub_match.html" title="cpp/regex/sub match"> <code>csub_match</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/ctype.html" title="cpp/locale/ctype"> <code>ctype<></code></a> <br />
<a href="locale/ctype.html" title="cpp/locale/ctype"> <code>ctype<></code></a> (char) <br />
<a href="locale/ctype_base.html" title="cpp/locale/ctype base"> <code>ctype_base</code></a> <br />
<a href="locale/ctype_byname.html" title="cpp/locale/ctype byname"> <code>ctype_byname<></code></a> <br />
<a href="error/current_exception.html" title="cpp/error/current exception"> <code>current_exception()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/cv_status.html" title="cpp/thread/cv status"> <code>cv_status</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/special_math/cyl_bessel_i.html" title="cpp/numeric/special math/cyl bessel i"> <code>cyl_bessel_i()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/cyl_bessel_i.html" title="cpp/numeric/special math/cyl bessel i"> <code>cyl_bessel_if()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/cyl_bessel_i.html" title="cpp/numeric/special math/cyl bessel i"> <code>cyl_bessel_il()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/cyl_bessel_j.html" title="cpp/numeric/special math/cyl bessel j"> <code>cyl_bessel_j()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/cyl_bessel_j.html" title="cpp/numeric/special math/cyl bessel j"> <code>cyl_bessel_jf()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/cyl_bessel_j.html" title="cpp/numeric/special math/cyl bessel j"> <code>cyl_bessel_jl()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/cyl_bessel_k.html" title="cpp/numeric/special math/cyl bessel k"> <code>cyl_bessel_k()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/cyl_bessel_k.html" title="cpp/numeric/special math/cyl bessel k"> <code>cyl_bessel_kf()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/cyl_bessel_k.html" title="cpp/numeric/special math/cyl bessel k"> <code>cyl_bessel_kl()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/cyl_neumann.html" title="cpp/numeric/special math/cyl neumann"> <code>cyl_neumann()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/cyl_neumann.html" title="cpp/numeric/special math/cyl neumann"> <code>cyl_neumannf()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/cyl_neumann.html" title="cpp/numeric/special math/cyl neumann"> <code>cyl_neumannl()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=5" title="Edit section: D">edit</a>]</span> <span class="mw-headline" id="D">D</span></h1>
<p><a href="iterator/data.html" title="cpp/iterator/data"> <code>data<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="io/manip/hex.html" title="cpp/io/manip/hex"> <code>dec()</code></a> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>deca</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/decay.html" title="cpp/types/decay"> <code>decay<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/decay.html" title="cpp/types/decay"> <code>decay_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>deci</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/gc/declare_no_pointers.html" title="cpp/memory/gc/declare no pointers"> <code>declare_no_pointers()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/gc/declare_reachable.html" title="cpp/memory/gc/declare reachable"> <code>declare_reachable()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/declval.html" title="cpp/utility/declval"> <code>declval<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/default_delete.html" title="cpp/memory/default delete"> <code>default_delete</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/manip/fixed.html" title="cpp/io/manip/fixed"> <code>defaultfloat()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random.html" title="cpp/numeric/random"> <code>default_random_engine</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/default_searcher.html" title="cpp/utility/functional/default searcher"> <code>default_searcher<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="thread/lock_tag.html" title="cpp/thread/lock tag"> <code>defer_lock</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/lock_tag_t.html" title="cpp/thread/lock tag t"> <code>defer_lock_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/numeric_limits/float_denorm_style.html" title="cpp/types/numeric limits/float denorm style"> <code>denorm_absent</code></a> <br />
<a href="types/numeric_limits/float_denorm_style.html" title="cpp/types/numeric limits/float denorm style"> <code>denorm_indeterminate</code></a> <br />
<a href="types/numeric_limits/float_denorm_style.html" title="cpp/types/numeric limits/float denorm style"> <code>denorm_present</code></a> <br />
<a href="container/deque.html" title="cpp/container/deque"> <code>deque<></code></a> <br />
<a href="memory/destroy.html" title="cpp/memory/destroy"> <code>destroy<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/destroy_at.html" title="cpp/memory/destroy at"> <code>destroy_at<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/destroy_n.html" title="cpp/memory/destroy n"> <code>destroy_n<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/random/discrete_distribution.html" title="cpp/numeric/random/discrete distribution"> <code>discrete_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/discard_block_engine.html" title="cpp/numeric/random/discard block engine"> <code>discard_block_engine<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/disjunction.html" title="cpp/types/disjunction"> <code>disjunction<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/disjunction.html" title="cpp/types/disjunction"> <code>disjunction_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="iterator/distance.html" title="cpp/iterator/distance"> <code>distance<>()</code></a> <br />
<a href="numeric/math/div.html" title="cpp/numeric/math/div"> <code>div()</code></a> <br />
<a href="numeric/math/div.html" title="cpp/numeric/math/div"> <code>div_t</code></a> <br />
<a href="utility/functional/divides.html" title="cpp/utility/functional/divides"> <code>divides<></code></a> <br />
<a href="error/domain_error/domain_error.html" title="cpp/error/domain error"> <code>domain_error</code></a> <br />
<a href="numeric/math.html" title="cpp/numeric/math"> <code>double_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/pointer_cast.html" title="cpp/memory/shared ptr/pointer cast"> <code>dynamic_pointer_cast<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=6" title="Edit section: E">edit</a>]</span> <span class="mw-headline" id="E">E</span></h1>
<p><a href="numeric/special_math/ellint_1.html" title="cpp/numeric/special math/ellint 1"> <code>ellint_1()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/ellint_1.html" title="cpp/numeric/special math/ellint 1"> <code>ellint_1f()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/ellint_1.html" title="cpp/numeric/special math/ellint 1"> <code>ellint_1l()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/ellint_2.html" title="cpp/numeric/special math/ellint 2"> <code>ellint_2()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/ellint_2.html" title="cpp/numeric/special math/ellint 2"> <code>ellint_2f()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/ellint_2.html" title="cpp/numeric/special math/ellint 2"> <code>ellint_2l()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/ellint_3.html" title="cpp/numeric/special math/ellint 3"> <code>ellint_3()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/ellint_3.html" title="cpp/numeric/special math/ellint 3"> <code>ellint_3f()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/ellint_3.html" title="cpp/numeric/special math/ellint 3"> <code>ellint_3l()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="iterator/empty.html" title="cpp/iterator/empty"> <code>empty<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/enable_if.html" title="cpp/types/enable if"> <code>enable_if<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/enable_if.html" title="cpp/types/enable if"> <code>enable_if_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="memory/enable_shared_from_this.html" title="cpp/memory/enable shared from this"> <code>enable_shared_from_this<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="iterator/end.html" title="cpp/iterator/end"> <code>end<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> (iterator) <br />
<a href="io/manip/endl.html" title="cpp/io/manip/endl"> <code>endl()<></code></a> <br />
<a href="io/manip/ends.html" title="cpp/io/manip/ends"> <code>ends()<></code></a> <br />
<a href="algorithm/equal.html" title="cpp/algorithm/equal"> <code>equal()<></code></a> <br />
<a href="algorithm/equal_range.html" title="cpp/algorithm/equal range"> <code>equal_range()<></code></a> <br />
<a href="utility/functional/equal_to.html" title="cpp/utility/functional/equal to"> <code>equal_to<></code></a> <br />
<a href="numeric/math/erf.html" title="cpp/numeric/math/erf"> <code>erf()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/erfc.html" title="cpp/numeric/math/erfc"> <code>erfc()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/errc.html" title="cpp/error/errc"> <code>errc</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/error_category.html" title="cpp/error/error category"> <code>error_category</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/error_code.html" title="cpp/error/error code"> <code>error_code</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/error_condition.html" title="cpp/error/error condition"> <code>error_condition</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>exa</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/exception.html" title="cpp/error/exception"> <code>exception</code></a> <br />
<a href="error/exception_ptr.html" title="cpp/error/exception ptr"> <code>exception_ptr</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/exchange.html" title="cpp/utility/exchange"> <code>exchange<>()</code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="algorithm/exclusive_scan.html" title="cpp/algorithm/exclusive scan"> <code>exclusive_scan()<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/math/exp.html" title="cpp/numeric/math/exp"> <code>exp()</code></a> <br />
<a href="numeric/complex/exp.html" title="cpp/numeric/complex/exp"> <code>exp<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/exp.html" title="cpp/numeric/valarray/exp"> <code>exp<></code></a> (std::valarray) <br />
<a href="numeric/math/exp2.html" title="cpp/numeric/math/exp2"> <code>exp2()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/special_math/expint.html" title="cpp/numeric/special math/expint"> <code>expint()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/expint.html" title="cpp/numeric/special math/expint"> <code>expintf()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/expint.html" title="cpp/numeric/special math/expint"> <code>expintl()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/math/expm1.html" title="cpp/numeric/math/expm1"> <code>expm1()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/exponential_distribution.html" title="cpp/numeric/random/exponential distribution"> <code>exponential_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/extent.html" title="cpp/types/extent"> <code>extent<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/extent.html" title="cpp/types/extent"> <code>extent_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/random/extreme_value_distribution.html" title="cpp/numeric/random/extreme value distribution"> <code>extreme_value_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=7" title="Edit section: F">edit</a>]</span> <span class="mw-headline" id="F">F</span></h1>
<p><a href="numeric/math/fabs.html" title="cpp/numeric/math/fabs"> <code>fabs()</code></a> (float) <br />
<a href="types/integral_constant.html" title="cpp/types/integral constant"> <code>false_type</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/fdim.html" title="cpp/numeric/math/fdim"> <code>fdim()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/fenv/FE_round.html" title="cpp/numeric/fenv/FE round"> <code>FE_DOWNWARD</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>femto</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/fenv/feround.html" title="cpp/numeric/fenv/feround"> <code>fegetround()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/fenv/feround.html" title="cpp/numeric/fenv/feround"> <code>fesetround()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/fenv/FE_round.html" title="cpp/numeric/fenv/FE round"> <code>FE_TONEAREST</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/fenv/FE_round.html" title="cpp/numeric/fenv/FE round"> <code>FE_TOWARDZERO</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/fenv/FE_round.html" title="cpp/numeric/fenv/FE round"> <code>FE_UPWARD</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io.html" title="cpp/io"> <code>filebuf</code></a> <br />
▶ <a href="symbol_index/filesystem.html" title="cpp/symbol index/filesystem"> <code>filesystem</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/fill.html" title="cpp/algorithm/fill"> <code>fill()<></code></a> <br />
<a href="algorithm/fill_n.html" title="cpp/algorithm/fill n"> <code>fill_n()<></code></a> <br />
<a href="algorithm/find_if_not.html" title="cpp/algorithm/find"> <code>find()<></code></a> <br />
<a href="algorithm/find_end.html" title="cpp/algorithm/find end"> <code>find_end()<></code></a> <br />
<a href="algorithm/find_first_of.html" title="cpp/algorithm/find first of"> <code>find_first_of()<></code></a> <br />
<a href="algorithm/find_if.html" title="cpp/algorithm/find if" class="mw-redirect"> <code>find_if()<></code></a> <br />
<a href="algorithm/find_if_not.html" title="cpp/algorithm/find if not" class="mw-redirect"> <code>find_if_not()<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/random/fisher_f_distribution.html" title="cpp/numeric/random/fisher f distribution"> <code>fisher_f_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/manip/fixed.html" title="cpp/io/manip/fixed"> <code>fixed()</code></a> <br />
<a href="types/numeric_limits/float_denorm_style.html" title="cpp/types/numeric limits/float denorm style"> <code>float_denorm_style</code></a> <br />
<a href="types/numeric_limits/float_round_style.html" title="cpp/types/numeric limits/float round style"> <code>float_round_style</code></a> <br />
<a href="numeric/math/floor.html" title="cpp/numeric/math/floor"> <code>floor()</code></a> <br />
<a href="io/manip/flush.html" title="cpp/io/manip/flush"> <code>flush()<></code></a> <br />
<a href="numeric/math/fma.html" title="cpp/numeric/math/fma"> <code>fma()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/fmax.html" title="cpp/numeric/math/fmax"> <code>fmax()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/fmin.html" title="cpp/numeric/math/fmin"> <code>fmin()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/fmod.html" title="cpp/numeric/math/fmod"> <code>fmod()</code></a> <br />
<a href="numeric/math.html" title="cpp/numeric/math"> <code>float_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/for_each.html" title="cpp/algorithm/for each"> <code>for_each()<></code></a> <br />
<a href="algorithm/for_each_n.html" title="cpp/algorithm/for each n"> <code>for_each_n()<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/forward.html" title="cpp/utility/forward"> <code>forward<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/tuple/forward_as_tuple.html" title="cpp/utility/tuple/forward as tuple"> <code>forward_as_tuple<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="iterator/iterator_tags.html" title="cpp/iterator/iterator tags"> <code>forward_iterator_tag</code></a> <br />
<a href="container/forward_list.html" title="cpp/container/forward list"> <code>forward_list<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/fpclassify.html" title="cpp/numeric/math/fpclassify"> <code>fpclassify()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/fma.html" title="cpp/numeric/math/fma"> <code>FP_FAST_FMA</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/fma.html" title="cpp/numeric/math/fma"> <code>FP_FAST_FMAF</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/fma.html" title="cpp/numeric/math/fma"> <code>FP_FAST_FMAL</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/FP_categories.html" title="cpp/numeric/math/FP categories"> <code>FP_INFINITE</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/FP_categories.html" title="cpp/numeric/math/FP categories"> <code>FP_NAN</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/FP_categories.html" title="cpp/numeric/math/FP categories"> <code>FP_NORMAL</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/fpos.html" title="cpp/io/fpos"> <code>fpos<></code></a> <br />
<a href="numeric/math/FP_categories.html" title="cpp/numeric/math/FP categories"> <code>FP_SUBNORMAL</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/FP_categories.html" title="cpp/numeric/math/FP categories"> <code>FP_ZERO</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/frexp.html" title="cpp/numeric/math/frexp"> <code>frexp()</code></a> <br />
<a href="iterator/front_inserter.html" title="cpp/iterator/front inserter"> <code>front_inserter<>()</code></a> <br />
<a href="iterator/front_insert_iterator.html" title="cpp/iterator/front insert iterator"> <code>front_insert_iterator<></code></a> <br />
<a href="io.html" title="cpp/io"> <code>fstream</code></a> <br />
<a href="utility/functional/function.html" title="cpp/utility/functional/function"> <code>function<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/future.html" title="cpp/thread/future"> <code>future<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/future_category.html" title="cpp/thread/future category"> <code>future_category()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/future_errc.html" title="cpp/thread/future errc"> <code>future_errc</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/future_error.html" title="cpp/thread/future error"> <code>future_error</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/future_status.html" title="cpp/thread/future status"> <code>future_status</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=8" title="Edit section: G">edit</a>]</span> <span class="mw-headline" id="G">G</span></h1>
<p><a href="numeric/random/gamma_distribution.html" title="cpp/numeric/random/gamma distribution"> <code>gamma_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/gcd.html" title="cpp/numeric/gcd"> <code>gcd<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/generate.html" title="cpp/algorithm/generate"> <code>generate()<></code></a> <br />
<a href="numeric/random/generate_canonical.html" title="cpp/numeric/random/generate canonical"> <code>generate_canonical<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/codecvt_mode.html" title="cpp/locale/codecvt mode"> <code>generate_header</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/generate_n.html" title="cpp/algorithm/generate n"> <code>generate_n()<></code></a> <br />
<a href="error/generic_category.html" title="cpp/error/generic category"> <code>generic_category()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/geometric_distribution.html" title="cpp/numeric/random/geometric distribution"> <code>geometric_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="container/array/get.html" title="cpp/container/array/get"> <code>get<>()</code></a> (std::array) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/pair/get.html" title="cpp/utility/pair/get"> <code>get<>()</code></a> (std::pair) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/tuple/get.html" title="cpp/utility/tuple/get"> <code>get<>()</code></a> (std::tuple) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/variant/get.html" title="cpp/utility/variant/get"> <code>get<>()</code></a> (std::variant) <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/shared_ptr/get_deleter.html" title="cpp/memory/shared ptr/get deleter"> <code>get_deleter<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/variant/get_if.html" title="cpp/utility/variant/get if"> <code>get_if<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="io/manip/get_money.html" title="cpp/io/manip/get money"> <code>get_money()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/new/get_new_handler.html" title="cpp/memory/new/get new handler"> <code>get_new_handler()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/gc/get_pointer_safety.html" title="cpp/memory/gc/get pointer safety"> <code>get_pointer_safety()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/get_terminate.html" title="cpp/error/get terminate"> <code>get_terminate()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/manip/get_time.html" title="cpp/io/manip/get time"> <code>get_time()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>giga</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/greater.html" title="cpp/utility/functional/greater"> <code>greater<></code></a> <br />
<a href="utility/functional/greater_equal.html" title="cpp/utility/functional/greater equal"> <code>greater_equal<></code></a> <br />
<a href="numeric/valarray/gslice.html" title="cpp/numeric/valarray/gslice"> <code>gslice</code></a> <br />
<a href="numeric/valarray/gslice_array.html" title="cpp/numeric/valarray/gslice array"> <code>gslice_array<></code></a> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=9" title="Edit section: H">edit</a>]</span> <span class="mw-headline" id="H">H</span></h1>
<p><a href="thread/hardware_destructive_interference_size.html" title="cpp/thread/hardware destructive interference size"> <code>hardware_constructive_interference_size</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/hardware_destructive_interference_size.html" title="cpp/thread/hardware destructive interference size"> <code>hardware_destructive_interference_size</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/has_facet.html" title="cpp/locale/has facet"> <code>has_facet<>()</code></a> <br />
<a href="utility/hash.html" title="cpp/utility/hash"> <code>hash<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/has_unique_object_representations.html" title="cpp/types/has unique object representations"> <code>has_unique_object_representations<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/has_unique_object_representations.html" title="cpp/types/has unique object representations"> <code>has_unique_object_representations_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/has_virtual_destructor.html" title="cpp/types/has virtual destructor"> <code>has_virtual_destructor<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/has_virtual_destructor.html" title="cpp/types/has virtual destructor"> <code>has_virtual_destructor_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>hecto</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/special_math/hermite.html" title="cpp/numeric/special math/hermite"> <code>hermite()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/hermite.html" title="cpp/numeric/special math/hermite"> <code>hermitef()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/hermite.html" title="cpp/numeric/special math/hermite"> <code>hermitel()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="io/manip/hex.html" title="cpp/io/manip/hex"> <code>hex()</code></a> <br />
<a href="io/manip/fixed.html" title="cpp/io/manip/fixed"> <code>hexfloat()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/variant/holds_alternative.html" title="cpp/utility/variant/holds alternative"> <code>holds_alternative<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/math/HUGE_VAL.html" title="cpp/numeric/math/HUGE VAL"> <code>HUGE_VAL</code></a> <br />
<a href="numeric/math/HUGE_VAL.html" title="cpp/numeric/math/HUGE VAL"> <code>HUGE_VALF</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/HUGE_VAL.html" title="cpp/numeric/math/HUGE VAL"> <code>HUGE_VALL</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/hypot.html" title="cpp/numeric/math/hypot"> <code>hypot()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=10" title="Edit section: I">edit</a>]</span> <span class="mw-headline" id="I">I</span></h1>
<p><a href="io.html" title="cpp/io"> <code>ifstream</code></a> <br />
<a href="utility/tuple/ignore.html" title="cpp/utility/tuple/ignore"> <code>ignore</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/ilogb.html" title="cpp/numeric/math/ilogb"> <code>ilogb()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/complex/imag2.html" title="cpp/numeric/complex/imag2"> <code>imag<>()</code></a> <br />
<a href="numeric/math/abs.html" title="cpp/numeric/math/abs"> <code>imaxabs()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/div.html" title="cpp/numeric/math/div"> <code>imaxdiv()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/div.html" title="cpp/numeric/math/div"> <code>imaxdiv_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/includes.html" title="cpp/algorithm/includes"> <code>includes()<></code></a> <br />
<a href="algorithm/inclusive_scan.html" title="cpp/algorithm/inclusive scan"> <code>inclusive_scan()<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/random/independent_bits_engine.html" title="cpp/numeric/random/independent bits engine"> <code>independent_bits_engine<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/valarray/indirect_array.html" title="cpp/numeric/valarray/indirect array"> <code>indirect_array<></code></a> <br />
<a href="numeric/math/INFINITY.html" title="cpp/numeric/math/INFINITY"> <code>INFINITY</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/initializer_list.html" title="cpp/utility/initializer list"> <code>initializer_list<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/inner_product.html" title="cpp/algorithm/inner product"> <code>inner_product()<></code></a> <br />
<a href="utility/optional/in_place.html" title="cpp/utility/in place"> <code>in_place</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/optional/in_place.html" title="cpp/utility/in place"> <code>in_place_index</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/optional/in_place.html" title="cpp/utility/in place"> <code>in_place_index_t</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/optional/in_place.html" title="cpp/utility/in place"> <code>in_place_t</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/inplace_merge.html" title="cpp/algorithm/inplace merge"> <code>inplace_merge()<></code></a> <br />
<a href="utility/optional/in_place.html" title="cpp/utility/in place"> <code>in_place_type</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/optional/in_place.html" title="cpp/utility/in place"> <code>in_place_type_t</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="iterator/iterator_tags.html" title="cpp/iterator/iterator tags"> <code>input_iterator_tag</code></a> <br />
<a href="iterator/inserter.html" title="cpp/iterator/inserter"> <code>inserter<>()</code></a> <br />
<a href="iterator/insert_iterator.html" title="cpp/iterator/insert iterator"> <code>insert_iterator<></code></a> <br />
<a href="utility/integer_sequence.html" title="cpp/utility/integer sequence"> <code>integer_sequence<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/integral_constant.html" title="cpp/types/integral constant"> <code>integral_constant<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/manip/left.html" title="cpp/io/manip/left"> <code>internal()</code></a> <br />
<a href="error/invalid_argument/invalid_argument.html" title="cpp/error/invalid argument"> <code>invalid_argument</code></a> <br />
<a href="utility/functional/invoke.html" title="cpp/utility/functional/invoke"> <code>invoke<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/result_of.html" title="cpp/types/result of"> <code>invoke_result<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/result_of.html" title="cpp/types/result of"> <code>invoke_result_t<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="io.html" title="cpp/io"> <code>ios</code></a> <br />
<a href="io/io_errc.html" title="cpp/io/io errc"> <code>io_errc</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/ios_base.html" title="cpp/io/ios base"> <code>ios_base</code></a> <br />
<a href="io.html" title="cpp/io"> <code>iostream</code></a> <br />
<a href="io/iostream_category.html" title="cpp/io/iostream category"> <code>iostream_category</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/iota.html" title="cpp/algorithm/iota"> <code>iota()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_abstract.html" title="cpp/types/is abstract"> <code>is_abstract<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_abstract.html" title="cpp/types/is abstract"> <code>is_abstract_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_aggregate.html" title="cpp/types/is aggregate"> <code>is_aggregate<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_aggregate.html" title="cpp/types/is aggregate"> <code>is_aggregate_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="locale/isalnum.html" title="cpp/locale/isalnum"> <code>isalnum<>()</code></a> <br />
<a href="locale/isalpha.html" title="cpp/locale/isalpha"> <code>isalpha<>()</code></a> <br />
<a href="types/is_arithmetic.html" title="cpp/types/is arithmetic"> <code>is_arithmetic<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_arithmetic.html" title="cpp/types/is arithmetic"> <code>is_arithmetic_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_array.html" title="cpp/types/is array"> <code>is_array<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_array.html" title="cpp/types/is array"> <code>is_array_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_assignable.html" title="cpp/types/is assignable"> <code>is_assignable<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_assignable.html" title="cpp/types/is assignable"> <code>is_assignable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_base_of.html" title="cpp/types/is base of"> <code>is_base_of<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_base_of.html" title="cpp/types/is base of"> <code>is_base_of_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/functional/is_bind_expression.html" title="cpp/utility/functional/is bind expression"> <code>is_bind_expression<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/is_bind_expression.html" title="cpp/utility/functional/is bind expression"> <code>is_bind_expression_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="locale/isblank.html" title="cpp/locale/isblank"> <code>isblank<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_class.html" title="cpp/types/is class"> <code>is_class<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_class.html" title="cpp/types/is class"> <code>is_class_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="locale/iscntrl.html" title="cpp/locale/iscntrl"> <code>iscntrl<>()</code></a> <br />
<a href="types/is_compound.html" title="cpp/types/is compound"> <code>is_compound<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_compound.html" title="cpp/types/is compound"> <code>is_compound_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_const.html" title="cpp/types/is const"> <code>is_const<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_constructible.html" title="cpp/types/is constructible"> <code>is_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_constructible.html" title="cpp/types/is constructible"> <code>is_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_const.html" title="cpp/types/is const"> <code>is_const_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_convertible.html" title="cpp/types/is convertible"> <code>is_convertible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_convertible.html" title="cpp/types/is convertible"> <code>is_convertible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_copy_assignable.html" title="cpp/types/is copy assignable"> <code>is_copy_assignable<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_copy_assignable.html" title="cpp/types/is copy assignable"> <code>is_copy_assignable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_copy_constructible.html" title="cpp/types/is copy constructible"> <code>is_copy_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_copy_constructible.html" title="cpp/types/is copy constructible"> <code>is_copy_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_default_constructible.html" title="cpp/types/is default constructible"> <code>is_default_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_default_constructible.html" title="cpp/types/is default constructible"> <code>is_default_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_destructible.html" title="cpp/types/is destructible"> <code>is_destructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_destructible.html" title="cpp/types/is destructible"> <code>is_destructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="locale/isdigit.html" title="cpp/locale/isdigit"> <code>isdigit<>()</code></a> <br />
<a href="types/is_empty.html" title="cpp/types/is empty"> <code>is_empty<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_empty.html" title="cpp/types/is empty"> <code>is_empty_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_enum.html" title="cpp/types/is enum"> <code>is_enum<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_enum.html" title="cpp/types/is enum"> <code>is_enum_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="error/error_code/is_error_code_enum.html" title="cpp/error/error code/is error code enum"> <code>is_error_code_enum()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/error_condition/is_error_condition_enum.html" title="cpp/error/error condition/is error condition enum"> <code>is_error_condition_enum</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/error_condition/is_error_condition_enum.html" title="cpp/error/error condition/is error condition enum"> <code>is_error_condition_enum_v</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/is_execution_policy.html" title="cpp/algorithm/is execution policy"> <code>is_execution_policy<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/is_execution_policy.html" title="cpp/algorithm/is execution policy"> <code>is_execution_policy_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_final.html" title="cpp/types/is final"> <code>is_final<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/is_final.html" title="cpp/types/is final"> <code>is_final_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/math/isfinite.html" title="cpp/numeric/math/isfinite"> <code>isfinite()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_floating_point.html" title="cpp/types/is floating point"> <code>is_floating_point<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_floating_point.html" title="cpp/types/is floating point"> <code>is_floating_point_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_function.html" title="cpp/types/is function"> <code>is_function<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_function.html" title="cpp/types/is function"> <code>is_function_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_fundamental.html" title="cpp/types/is fundamental"> <code>is_fundamental<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_fundamental.html" title="cpp/types/is fundamental"> <code>is_fundamental_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="locale/isgraph.html" title="cpp/locale/isgraph"> <code>isgraph<>()</code></a> <br />
<a href="numeric/math/isgreater.html" title="cpp/numeric/math/isgreater"> <code>isgreater()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/isgreaterequal.html" title="cpp/numeric/math/isgreaterequal"> <code>isgreaterequal()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/is_heap.html" title="cpp/algorithm/is heap"> <code>is_heap()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/is_heap_until.html" title="cpp/algorithm/is heap until"> <code>is_heap_until()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/isinf.html" title="cpp/numeric/math/isinf"> <code>isinf()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_integral.html" title="cpp/types/is integral"> <code>is_integral<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_integral.html" title="cpp/types/is integral"> <code>is_integral_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_invocable.html" title="cpp/types/is invocable"> <code>is_invocable<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_invocable.html" title="cpp/types/is invocable"> <code>is_invocable_r<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_invocable.html" title="cpp/types/is invocable"> <code>is_invocable_r_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_invocable.html" title="cpp/types/is invocable"> <code>is_invocable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/math/isless.html" title="cpp/numeric/math/isless"> <code>isless()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/islessequal.html" title="cpp/numeric/math/islessequal"> <code>islessequal()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/islessgreater.html" title="cpp/numeric/math/islessgreater"> <code>islessgreater()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/islower.html" title="cpp/locale/islower"> <code>islower<>()</code></a> <br />
<a href="types/is_lvalue_reference.html" title="cpp/types/is lvalue reference"> <code>is_lvalue_reference<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_lvalue_reference.html" title="cpp/types/is lvalue reference"> <code>is_lvalue_reference_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_member_function_pointer.html" title="cpp/types/is member function pointer"> <code>is_member_function_pointer<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_member_function_pointer.html" title="cpp/types/is member function pointer"> <code>is_member_function_pointer_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_member_object_pointer.html" title="cpp/types/is member object pointer"> <code>is_member_object_pointer<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_member_object_pointer.html" title="cpp/types/is member object pointer"> <code>is_member_object_pointer_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_member_pointer.html" title="cpp/types/is member pointer"> <code>is_member_pointer<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_member_pointer.html" title="cpp/types/is member pointer"> <code>is_member_pointer_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_move_assignable.html" title="cpp/types/is move assignable"> <code>is_move_assignable<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_move_assignable.html" title="cpp/types/is move assignable"> <code>is_move_assignable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_move_constructible.html" title="cpp/types/is move constructible"> <code>is_move_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_move_constructible.html" title="cpp/types/is move constructible"> <code>is_move_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/math/isnan.html" title="cpp/numeric/math/isnan"> <code>isnan()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/isnormal.html" title="cpp/numeric/math/isnormal"> <code>isnormal()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_assignable.html" title="cpp/types/is assignable"> <code>is_nothrow_assignable<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_assignable.html" title="cpp/types/is assignable"> <code>is_nothrow_assignable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_constructible.html" title="cpp/types/is constructible"> <code>is_nothrow_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_constructible.html" title="cpp/types/is constructible"> <code>is_nothrow_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_copy_assignable.html" title="cpp/types/is copy assignable"> <code>is_nothrow_copy_assignable<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_copy_assignable.html" title="cpp/types/is copy assignable"> <code>is_nothrow_copy_assignable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_copy_constructible.html" title="cpp/types/is copy constructible"> <code>is_nothrow_copy_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_copy_constructible.html" title="cpp/types/is copy constructible"> <code>is_nothrow_copy_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_default_constructible.html" title="cpp/types/is default constructible"> <code>is_nothrow_default_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_default_constructible.html" title="cpp/types/is default constructible"> <code>is_nothrow_default_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_destructible.html" title="cpp/types/is destructible"> <code>is_nothrow_destructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_destructible.html" title="cpp/types/is destructible"> <code>is_nothrow_destructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_invocable.html" title="cpp/types/is invocable"> <code>is_nothrow_invocable<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_invocable.html" title="cpp/types/is invocable"> <code>is_nothrow_invocable_r<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_invocable.html" title="cpp/types/is invocable"> <code>is_nothrow_invocable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_invocable.html" title="cpp/types/is invocable"> <code>is_nothrow_invocable_r_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_move_assignable.html" title="cpp/types/is move assignable"> <code>is_nothrow_move_assignable<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_move_assignable.html" title="cpp/types/is move assignable"> <code>is_nothrow_move_assignable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_move_constructible.html" title="cpp/types/is move constructible"> <code>is_nothrow_move_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_move_constructible.html" title="cpp/types/is move constructible"> <code>is_nothrow_move_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_swappable.html" title="cpp/types/is swappable"> <code>is_nothrow_swappable<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_swappable.html" title="cpp/types/is swappable"> <code>is_nothrow_swappable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_swappable.html" title="cpp/types/is swappable"> <code>is_nothrow_swappable_with<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_swappable.html" title="cpp/types/is swappable"> <code>is_nothrow_swappable_with_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_null_pointer.html" title="cpp/types/is null pointer"> <code>is_null_pointer<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_null_pointer.html" title="cpp/types/is null pointer"> <code>is_null_pointer_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_object.html" title="cpp/types/is object"> <code>is_object<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_object.html" title="cpp/types/is object"> <code>is_object_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/is_partitioned.html" title="cpp/algorithm/is partitioned"> <code>is_partitioned()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/is_permutation.html" title="cpp/algorithm/is permutation"> <code>is_permutation()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/is_placeholder.html" title="cpp/utility/functional/is placeholder"> <code>is_placeholder<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/is_placeholder.html" title="cpp/utility/functional/is placeholder"> <code>is_placeholder_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_pod.html" title="cpp/types/is pod"> <code>is_pod<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_pod.html" title="cpp/types/is pod"> <code>is_pod_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_pointer.html" title="cpp/types/is pointer"> <code>is_pointer<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_pointer.html" title="cpp/types/is pointer"> <code>is_pointer_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_polymorphic.html" title="cpp/types/is polymorphic"> <code>is_polymorphic<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_polymorphic.html" title="cpp/types/is polymorphic"> <code>is_polymorphic_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="locale/isprint.html" title="cpp/locale/isprint"> <code>isprint<>()</code></a> <br />
<a href="locale/ispunct.html" title="cpp/locale/ispunct"> <code>ispunct<>()</code></a> <br />
<a href="types/is_reference.html" title="cpp/types/is reference"> <code>is_reference<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_reference.html" title="cpp/types/is reference"> <code>is_reference_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_rvalue_reference.html" title="cpp/types/is rvalue reference"> <code>is_rvalue_reference<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_rvalue_reference.html" title="cpp/types/is rvalue reference"> <code>is_rvalue_reference_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_same.html" title="cpp/types/is same"> <code>is_same<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_same.html" title="cpp/types/is same"> <code>is_same_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_scalar.html" title="cpp/types/is scalar"> <code>is_scalar<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_scalar.html" title="cpp/types/is scalar"> <code>is_scalar_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_signed.html" title="cpp/types/is signed"> <code>is_signed<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_signed.html" title="cpp/types/is signed"> <code>is_signed_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/is_sorted.html" title="cpp/algorithm/is sorted"> <code>is_sorted()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/is_sorted_until.html" title="cpp/algorithm/is sorted until"> <code>is_sorted_until()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/isspace.html" title="cpp/locale/isspace"> <code>isspace<>()</code></a> <br />
<a href="types/is_standard_layout.html" title="cpp/types/is standard layout"> <code>is_standard_layout<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_standard_layout.html" title="cpp/types/is standard layout"> <code>is_standard_layout_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_swappable.html" title="cpp/types/is swappable"> <code>is_swappable<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_swappable.html" title="cpp/types/is swappable"> <code>is_swappable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_swappable.html" title="cpp/types/is swappable"> <code>is_swappable_with<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_swappable.html" title="cpp/types/is swappable"> <code>is_swappable_with_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="io.html" title="cpp/io"> <code>istream</code></a> <br />
<a href="iterator/istreambuf_iterator.html" title="cpp/iterator/istreambuf iterator"> <code>istreambuf_iterator<></code></a> <br />
<a href="iterator/istream_iterator.html" title="cpp/iterator/istream iterator"> <code>istream_iterator<></code></a> <br />
<a href="io.html" title="cpp/io"> <code>istringstream</code></a> <br />
<a href="types/is_trivial.html" title="cpp/types/is trivial"> <code>is_trivial<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_assignable.html" title="cpp/types/is assignable"> <code>is_trivially_assignable<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_assignable.html" title="cpp/types/is assignable"> <code>is_trivially_assignable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_constructible.html" title="cpp/types/is constructible"> <code>is_trivially_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_constructible.html" title="cpp/types/is constructible"> <code>is_trivially_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_trivially_copyable.html" title="cpp/types/is trivially copyable"> <code>is_trivially_copyable<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_trivially_copyable.html" title="cpp/types/is trivially copyable"> <code>is_trivially_copyable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_copy_assignable.html" title="cpp/types/is copy assignable"> <code>is_trivially_copy_assignable<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_copy_assignable.html" title="cpp/types/is copy assignable"> <code>is_trivially_copy_assignable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_copy_constructible.html" title="cpp/types/is copy constructible"> <code>is_trivially_copy_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_copy_constructible.html" title="cpp/types/is copy constructible"> <code>is_trivially_copy_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_default_constructible.html" title="cpp/types/is default constructible"> <code>is_trivially_default_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_default_constructible.html" title="cpp/types/is default constructible"> <code>is_trivially_default_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_destructible.html" title="cpp/types/is destructible"> <code>is_trivially_destructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_destructible.html" title="cpp/types/is destructible"> <code>is_trivially_destructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_move_assignable.html" title="cpp/types/is move assignable"> <code>is_trivially_move_assignable<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_move_assignable.html" title="cpp/types/is move assignable"> <code>is_trivially_move_assignable_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_move_constructible.html" title="cpp/types/is move constructible"> <code>is_trivially_move_constructible<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_move_constructible.html" title="cpp/types/is move constructible"> <code>is_trivially_move_constructible_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_trivial.html" title="cpp/types/is trivial"> <code>is_trivial_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_union.html" title="cpp/types/is union"> <code>is_union<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_union.html" title="cpp/types/is union"> <code>is_union_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/math/isunordered.html" title="cpp/numeric/math/isunordered"> <code>isunordered()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_unsigned.html" title="cpp/types/is unsigned"> <code>is_unsigned<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_unsigned.html" title="cpp/types/is unsigned"> <code>is_unsigned_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="locale/isupper.html" title="cpp/locale/isupper"> <code>isupper<>()</code></a> <br />
<a href="types/is_void.html" title="cpp/types/is void"> <code>is_void<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_void.html" title="cpp/types/is void"> <code>is_void_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/is_volatile.html" title="cpp/types/is volatile"> <code>is_volatile<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/is_volatile.html" title="cpp/types/is volatile"> <code>is_volatile_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="locale/isxdigit.html" title="cpp/locale/isxdigit"> <code>isxdigit<>()</code></a> <br />
<a href="iterator/iterator.html" title="cpp/iterator/iterator"> <code>iterator<></code></a> <span class="t-mark">(deprecated in C++17)</span> <br />
<a href="iterator/iterator_traits.html" title="cpp/iterator/iterator traits"> <code>iterator_traits<></code></a> <br />
<a href="algorithm/iter_swap.html" title="cpp/algorithm/iter swap"> <code>iter_swap()<></code></a> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=11" title="Edit section: J">edit</a>]</span> <span class="mw-headline" id="J">J</span></h1>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=12" title="Edit section: K">edit</a>]</span> <span class="mw-headline" id="K">K</span></h1>
<p><a href="atomic/kill_dependency.html" title="cpp/atomic/kill dependency"> <code>kill_dependency<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>kilo</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random.html" title="cpp/numeric/random"> <code>knuth_b</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=13" title="Edit section: L">edit</a>]</span> <span class="mw-headline" id="L">L</span></h1>
<p><a href="numeric/math/abs.html" title="cpp/numeric/math/abs"> <code>labs()</code></a> <br />
<a href="numeric/special_math/laguerre.html" title="cpp/numeric/special math/laguerre"> <code>laguerre()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/laguerre.html" title="cpp/numeric/special math/laguerre"> <code>laguerref()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/laguerre.html" title="cpp/numeric/special math/laguerre"> <code>laguerrel()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="thread/launch.html" title="cpp/thread/launch"> <code>launch</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/launder.html" title="cpp/utility/launder"> <code>launder<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="locale/LC_categories.html" title="cpp/locale/LC categories"> <code>LC_ALL</code></a> <br />
<a href="locale/LC_categories.html" title="cpp/locale/LC categories"> <code>LC_COLLATE</code></a> <br />
<a href="locale/LC_categories.html" title="cpp/locale/LC categories"> <code>LC_CTYPE</code></a> <br />
<a href="numeric/lcm.html" title="cpp/numeric/lcm"> <code>lcm<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="locale/LC_categories.html" title="cpp/locale/LC categories"> <code>LC_MONETARY</code></a> <br />
<a href="locale/LC_categories.html" title="cpp/locale/LC categories"> <code>LC_NUMERIC</code></a> <br />
<a href="locale/lconv.html" title="cpp/locale/lconv"> <code>lconv</code></a> <br />
<a href="locale/LC_categories.html" title="cpp/locale/LC categories"> <code>LC_TIME</code></a> <br />
<a href="numeric/math/ldexp.html" title="cpp/numeric/math/ldexp"> <code>ldexp()</code></a> <br />
<a href="numeric/math/div.html" title="cpp/numeric/math/div"> <code>ldiv()</code></a> <br />
<a href="numeric/math/div.html" title="cpp/numeric/math/div"> <code>ldiv_t</code></a> <br />
<a href="io/manip/left.html" title="cpp/io/manip/left"> <code>left()</code></a> <br />
<a href="numeric/special_math/legendre.html" title="cpp/numeric/special math/legendre"> <code>legendre()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/legendre.html" title="cpp/numeric/special math/legendre"> <code>legendref()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/legendre.html" title="cpp/numeric/special math/legendre"> <code>legendrel()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="error/length_error/length_error.html" title="cpp/error/length error"> <code>length_error</code></a> <br />
<a href="utility/functional/less.html" title="cpp/utility/functional/less"> <code>less<></code></a> <br />
<a href="utility/functional/less_equal.html" title="cpp/utility/functional/less equal"> <code>less_equal<></code></a> <br />
<a href="algorithm/lexicographical_compare.html" title="cpp/algorithm/lexicographical compare"> <code>lexicographical_compare()<></code></a> <br />
<a href="numeric/math/lgamma.html" title="cpp/numeric/math/lgamma"> <code>lgamma()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/linear_congruential_engine.html" title="cpp/numeric/random/linear congruential engine"> <code>linear_congruential_engine<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="container/list.html" title="cpp/container/list"> <code>list<></code></a> <br />
<a href="locale/codecvt_mode.html" title="cpp/locale/codecvt mode"> <code>little_endian</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/abs.html" title="cpp/numeric/math/abs"> <code>llabs()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/div.html" title="cpp/numeric/math/div"> <code>lldiv()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/div.html" title="cpp/numeric/math/div"> <code>lldiv_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/rint.html" title="cpp/numeric/math/rint"> <code>llrint()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/round.html" title="cpp/numeric/math/round"> <code>llround()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/locale.html" title="cpp/locale/locale"> <code>locale</code></a> <br />
<a href="locale/localeconv.html" title="cpp/locale/localeconv"> <code>localeconv()</code></a> <br />
<a href="thread/lock.html" title="cpp/thread/lock"> <code>lock<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/lock_guard.html" title="cpp/thread/lock guard"> <code>lock_guard<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/log.html" title="cpp/numeric/math/log"> <code>log()</code></a> <br />
<a href="numeric/complex/log.html" title="cpp/numeric/complex/log"> <code>log<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/log.html" title="cpp/numeric/valarray/log"> <code>log<></code></a> (std::valarray) <br />
<a href="numeric/math/log10.html" title="cpp/numeric/math/log10"> <code>log10()</code></a> <br />
<a href="numeric/complex/log10.html" title="cpp/numeric/complex/log10"> <code>log10<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/log10.html" title="cpp/numeric/valarray/log10"> <code>log10<></code></a> (std::valarray) <br />
<a href="numeric/math/logb.html" title="cpp/numeric/math/logb"> <code>logb()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/log1p.html" title="cpp/numeric/math/log1p"> <code>log1p()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/log2.html" title="cpp/numeric/math/log2"> <code>log2()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/logical_and.html" title="cpp/utility/functional/logical and"> <code>logical_and<></code></a> <br />
<a href="error/logic_error/logic_error.html" title="cpp/error/logic error"> <code>logic_error</code></a> <br />
<a href="numeric/random/lognormal_distribution.html" title="cpp/numeric/random/lognormal distribution"> <code>lognormal_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/logical_not.html" title="cpp/utility/functional/logical not"> <code>logical_not<></code></a> <br />
<a href="utility/functional/logical_or.html" title="cpp/utility/functional/logical or"> <code>logical_or<></code></a> <br />
<a href="algorithm/lower_bound.html" title="cpp/algorithm/lower bound"> <code>lower_bound()<></code></a> <br />
<a href="numeric/math/rint.html" title="cpp/numeric/math/rint"> <code>lrint()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/round.html" title="cpp/numeric/math/round"> <code>lround()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=14" title="Edit section: M">edit</a>]</span> <span class="mw-headline" id="M">M</span></h1>
<p><a href="utility/any/make_any.html" title="cpp/utility/any/make any"> <code>make_any<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="error/errc/make_error_code.html" title="cpp/error/errc/make error code"> <code>make_error_code( errc)</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/io_errc/make_error_code.html" title="cpp/io/io errc/make error code"> <code>make_error_code( io_errc)</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/errc/make_error_condition.html" title="cpp/error/errc/make error condition"> <code>make_error_condition( errc)</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/io_errc/make_error_condition.html" title="cpp/io/io errc/make error condition"> <code>make_error_condition( io_errc)</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/make_exception_ptr.html" title="cpp/error/make exception ptr"> <code>make_exception_ptr<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/make_from_tuple.html" title="cpp/utility/make from tuple"> <code>make_from_tuple<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/make_heap.html" title="cpp/algorithm/make heap"> <code>make_heap()<></code></a> <br />
<a href="iterator/make_move_iterator.html" title="cpp/iterator/make move iterator"> <code>make_move_iterator<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/optional/make_optional.html" title="cpp/utility/optional/make optional"> <code>make_optional<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/pair/make_pair.html" title="cpp/utility/pair/make pair"> <code>make_pair<></code></a> <br />
<a href="iterator/make_reverse_iterator.html" title="cpp/iterator/make reverse iterator"> <code>make_reverse_iterator<>()</code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="memory/shared_ptr/make_shared.html" title="cpp/memory/shared ptr/make shared"> <code>make_shared<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/make_signed.html" title="cpp/types/make signed"> <code>make_signed<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/make_signed.html" title="cpp/types/make signed"> <code>make_signed_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="utility/tuple/make_tuple.html" title="cpp/utility/tuple/make tuple"> <code>make_tuple<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/unique_ptr/make_unique.html" title="cpp/memory/unique ptr/make unique"> <code>make_unique<>()</code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/make_unsigned.html" title="cpp/types/make unsigned"> <code>make_unsigned<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/make_unsigned.html" title="cpp/types/make unsigned"> <code>make_unsigned_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="container/map.html" title="cpp/container/map"> <code>map<></code></a> <br />
<a href="numeric/valarray/mask_array.html" title="cpp/numeric/valarray/mask array"> <code>mask_array<></code></a> <br />
<a href="regex/match_results.html" title="cpp/regex/match results"> <code>match_results<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/math_errhandling.html" title="cpp/numeric/math/math errhandling"> <code>MATH_ERREXCEPT</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/math_errhandling.html" title="cpp/numeric/math/math errhandling"> <code>MATH_ERRNO</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/math_errhandling.html" title="cpp/numeric/math/math errhandling"> <code>math_errhandling</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/max.html" title="cpp/algorithm/max"> <code>max()<></code></a> <br />
<a href="types/max_align_t.html" title="cpp/types/max align t"> <code>max_align_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/max_element.html" title="cpp/algorithm/max element"> <code>max_element()<></code></a> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>mega</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/mem_fn.html" title="cpp/utility/functional/mem fn"> <code>mem_fn<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="atomic/memory_order.html" title="cpp/atomic/memory order"> <code>memory_order</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/memory_resource.html" title="cpp/memory/memory resource"> <code>memory_resource</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/merge.html" title="cpp/algorithm/merge"> <code>merge()<></code></a> <br />
<a href="numeric/random/mersenne_twister_engine.html" title="cpp/numeric/random/mersenne twister engine"> <code>mersenne_twister_engine<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/messages.html" title="cpp/locale/messages"> <code>messages<></code></a> <br />
<a href="locale/messages_base.html" title="cpp/locale/messages base"> <code>messages_base</code></a> <br />
<a href="locale/messages_byname.html" title="cpp/locale/messages byname"> <code>messages_byname<></code></a> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>micro</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>milli</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/min.html" title="cpp/algorithm/min"> <code>min()<></code></a> <br />
<a href="algorithm/min_element.html" title="cpp/algorithm/min element"> <code>min_element()<></code></a> <br />
<a href="algorithm/minmax.html" title="cpp/algorithm/minmax"> <code>minmax()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/minmax_element.html" title="cpp/algorithm/minmax element"> <code>minmax_element()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random.html" title="cpp/numeric/random"> <code>minstd_rand</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random.html" title="cpp/numeric/random"> <code>minstd_rand0</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/minus.html" title="cpp/utility/functional/minus"> <code>minus<></code></a> <br />
<a href="algorithm/mismatch.html" title="cpp/algorithm/mismatch"> <code>mismatch()<></code></a> <br />
<a href="numeric/math/modf.html" title="cpp/numeric/math/modf"> <code>modf()</code></a> <br />
<a href="utility/functional/modulus.html" title="cpp/utility/functional/modulus"> <code>modulus<></code></a> <br />
<a href="locale/money_base.html" title="cpp/locale/money base"> <code>money_base</code></a> <br />
<a href="locale/money_get.html" title="cpp/locale/money get"> <code>money_get<></code></a> <br />
<a href="locale/moneypunct.html" title="cpp/locale/moneypunct"> <code>moneypunct<></code></a> <br />
<a href="locale/moneypunct_byname.html" title="cpp/locale/moneypunct byname"> <code>moneypunct_byname<></code></a> <br />
<a href="locale/money_put.html" title="cpp/locale/money put"> <code>money_put<></code></a> <br />
<a href="utility/variant/monostate.html" title="cpp/utility/variant/monostate"> <code>monostate</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/move.html" title="cpp/algorithm/move"> <code>move()<></code></a> (algorithm) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/move.html" title="cpp/utility/move"> <code>move()<></code></a> (utility) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/move_backward.html" title="cpp/algorithm/move backward"> <code>move_backward()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/move_if_noexcept.html" title="cpp/utility/move if noexcept"> <code>move_if_noexcept<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="iterator/move_iterator.html" title="cpp/iterator/move iterator"> <code>move_iterator<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random.html" title="cpp/numeric/random"> <code>mt19937</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random.html" title="cpp/numeric/random"> <code>mt19937_64</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="container/multimap.html" title="cpp/container/multimap"> <code>multimap<></code></a> <br />
<a href="utility/functional/multiplies.html" title="cpp/utility/functional/multiplies"> <code>multiplies<></code></a> <br />
<a href="container/multiset.html" title="cpp/container/multiset"> <code>multiset<></code></a> <br />
<a href="thread/mutex.html" title="cpp/thread/mutex"> <code>mutex</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=15" title="Edit section: N">edit</a>]</span> <span class="mw-headline" id="N">N</span></h1>
<p><a href="numeric/math/NAN.html" title="cpp/numeric/math/NAN"> <code>NAN</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/nan.html" title="cpp/numeric/math/nan"> <code>nan()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/nan.html" title="cpp/numeric/math/nan"> <code>nanf()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/nan.html" title="cpp/numeric/math/nan"> <code>nanl()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>nano</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/nearbyint.html" title="cpp/numeric/math/nearbyint"> <code>nearbyint()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/negate.html" title="cpp/utility/functional/negate"> <code>negate<></code></a> <br />
<a href="types/negation.html" title="cpp/types/negation"> <code>negation<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/negation.html" title="cpp/types/negation"> <code>negation_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/random/negative_binomial_distribution.html" title="cpp/numeric/random/negative binomial distribution"> <code>negative_binomial_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/nested_exception.html" title="cpp/error/nested exception"> <code>nested_exception</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/new/new_handler.html" title="cpp/memory/new/new handler"> <code>new_handler</code></a> <br />
<a href="iterator/next.html" title="cpp/iterator/next"> <code>next<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/nextafter.html" title="cpp/numeric/math/nextafter"> <code>nextafter()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/next_permutation.html" title="cpp/algorithm/next permutation"> <code>next_permutation()<></code></a> <br />
<a href="numeric/math/nextafter.html" title="cpp/numeric/math/nextafter"> <code>nexttoward()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/manip/boolalpha.html" title="cpp/io/manip/boolalpha"> <code>noboolalpha()</code></a> <br />
<a href="algorithm/all_any_none_of.html" title="cpp/algorithm/all any none of"> <code>none_of()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/complex/norm.html" title="cpp/numeric/complex/norm"> <code>norm<>()</code></a> <br />
<a href="numeric/random/normal_distribution.html" title="cpp/numeric/random/normal distribution"> <code>normal_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/manip/showbase.html" title="cpp/io/manip/showbase"> <code>noshowbase()</code></a> <br />
<a href="io/manip/showpoint.html" title="cpp/io/manip/showpoint"> <code>noshowpoint()</code></a> <br />
<a href="io/manip/showpos.html" title="cpp/io/manip/showpos"> <code>noshowpos()</code></a> <br />
<a href="io/manip/skipws.html" title="cpp/io/manip/skipws"> <code>noskipws()</code></a> <br />
<a href="utility/functional/not_equal_to.html" title="cpp/utility/functional/not equal to"> <code>not_equal_to<></code></a> <br />
<a href="utility/functional/not_fn.html" title="cpp/utility/functional/not fn"> <code>not_fn<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/new/nothrow.html" title="cpp/memory/new/nothrow"> <code>nothrow</code></a> <br />
<a href="memory/new/nothrow_t.html" title="cpp/memory/new/nothrow t"> <code>nothrow_t</code></a> <br />
<a href="thread/notify_all_at_thread_exit.html" title="cpp/thread/notify all at thread exit"> <code>notify_all_at_thread_exit()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/manip/unitbuf.html" title="cpp/io/manip/unitbuf"> <code>nounitbuf()</code></a> <br />
<a href="io/manip/uppercase.html" title="cpp/io/manip/uppercase"> <code>nouppercase()</code></a> <br />
<a href="algorithm/nth_element.html" title="cpp/algorithm/nth element"> <code>nth_element()<></code></a> <br />
<a href="utility/optional/nullopt.html" title="cpp/utility/optional/nullopt"> <code>nullopt</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/optional/nullopt_t.html" title="cpp/utility/optional/nullopt t"> <code>nullopt_t</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/nullptr_t.html" title="cpp/types/nullptr t"> <code>nullptr_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/numeric_limits.html" title="cpp/types/numeric limits"> <code>numeric_limits<></code></a> <br />
<a href="locale/num_get.html" title="cpp/locale/num get"> <code>num_get<></code></a> <br />
<a href="locale/numpunct.html" title="cpp/locale/numpunct"> <code>numpunct<></code></a> <br />
<a href="locale/numpunct_byname.html" title="cpp/locale/numpunct byname"> <code>numpunct_byname<></code></a> <br />
<a href="locale/num_put.html" title="cpp/locale/num put"> <code>num_put<></code></a> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=16" title="Edit section: O">edit</a>]</span> <span class="mw-headline" id="O">O</span></h1>
<p><a href="io/manip/hex.html" title="cpp/io/manip/hex"> <code>oct()</code></a> <br />
<a href="thread/once_flag.html" title="cpp/thread/once flag"> <code>once_flag</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io.html" title="cpp/io"> <code>ofstream</code></a> <br />
<a href="utility/optional.html" title="cpp/utility/optional"> <code>optional<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="io.html" title="cpp/io"> <code>ostream</code></a> <br />
<a href="iterator/ostreambuf_iterator.html" title="cpp/iterator/ostreambuf iterator"> <code>ostreambuf_iterator<></code></a> <br />
<a href="iterator/ostream_iterator.html" title="cpp/iterator/ostream iterator"> <code>ostream_iterator<></code></a> <br />
<a href="io.html" title="cpp/io"> <code>ostringstream</code></a> <br />
<a href="error/out_of_range/out_of_range.html" title="cpp/error/out of range"> <code>out_of_range</code></a> <br />
<a href="iterator/iterator_tags.html" title="cpp/iterator/iterator tags"> <code>output_iterator_tag</code></a> <br />
<a href="error/overflow_error/overflow_error.html" title="cpp/error/overflow error"> <code>overflow_error</code></a> <br />
<a href="memory/owner_less.html" title="cpp/memory/owner less"> <code>owner_less<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=17" title="Edit section: P">edit</a>]</span> <span class="mw-headline" id="P">P</span></h1>
<p><a href="thread/packaged_task.html" title="cpp/thread/packaged task"> <code>packaged_task<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/pair.html" title="cpp/utility/pair"> <code>pair<></code></a> <br />
<a href="algorithm/partial_sort.html" title="cpp/algorithm/partial sort"> <code>partial_sort()<></code></a> <br />
<a href="algorithm/partial_sort_copy.html" title="cpp/algorithm/partial sort copy"> <code>partial_sort_copy()<></code></a> <br />
<a href="algorithm/partial_sum.html" title="cpp/algorithm/partial sum"> <code>partial_sum()<></code></a> <br />
<a href="algorithm/partition.html" title="cpp/algorithm/partition"> <code>partition()<></code></a> <br />
<a href="algorithm/partition_copy.html" title="cpp/algorithm/partition copy"> <code>partition_copy()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/partition_point.html" title="cpp/algorithm/partition point"> <code>partition_point()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>peta</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>pico</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/piecewise_constant_distribution.html" title="cpp/numeric/random/piecewise constant distribution"> <code>piecewise_constant_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/piecewise_construct.html" title="cpp/utility/piecewise construct"> <code>piecewise_construct</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/piecewise_construct_t.html" title="cpp/utility/piecewise construct t"> <code>piecewise_construct_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/piecewise_linear_distribution.html" title="cpp/numeric/random/piecewise linear distribution"> <code>piecewise_linear_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
▶ <a href="symbol_index/placeholders.html" title="cpp/symbol index/placeholders"> <code>placeholders</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/plus.html" title="cpp/utility/functional/plus"> <code>plus<></code></a> <br />
▶ <a href="symbol_index/pmr.html" title="cpp/symbol index/pmr"> <code>pmr</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/gc/pointer_safety.html" title="cpp/memory/gc/pointer safety"> <code>pointer_safety</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/pointer_traits.html" title="cpp/memory/pointer traits"> <code>pointer_traits<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/poisson_distribution.html" title="cpp/numeric/random/poisson distribution"> <code>poisson_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/polymorphic_allocator.html" title="cpp/memory/polymorphic allocator"> <code>polymorphic_allocator<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/complex/polar.html" title="cpp/numeric/complex/polar"> <code>polar<>()</code></a> <br />
<a href="algorithm/pop_heap.html" title="cpp/algorithm/pop heap"> <code>pop_heap()<></code></a> <br />
<a href="numeric/math/pow.html" title="cpp/numeric/math/pow"> <code>pow()</code></a> <br />
<a href="numeric/complex/pow.html" title="cpp/numeric/complex/pow"> <code>pow<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/pow.html" title="cpp/numeric/valarray/pow"> <code>pow<></code></a> (std::valarray) <br />
<a href="iterator/prev.html" title="cpp/iterator/prev"> <code>prev<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/prev_permutation.html" title="cpp/algorithm/prev permutation"> <code>prev_permutation()<></code></a> <br />
<a href="container/priority_queue.html" title="cpp/container/priority queue"> <code>priority_queue<></code></a> <br />
<a href="numeric/complex/proj.html" title="cpp/numeric/complex/proj"> <code>proj<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/promise.html" title="cpp/thread/promise"> <code>promise<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/ptrdiff_t.html" title="cpp/types/ptrdiff t"> <code>ptrdiff_t</code></a> <br />
<a href="algorithm/push_heap.html" title="cpp/algorithm/push heap"> <code>push_heap()<></code></a> <br />
<a href="io/manip/put_money.html" title="cpp/io/manip/put money"> <code>put_money()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/manip/put_time.html" title="cpp/io/manip/put time"> <code>put_time()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=18" title="Edit section: Q">edit</a>]</span> <span class="mw-headline" id="Q">Q</span></h1>
<p><a href="container/queue.html" title="cpp/container/queue"> <code>queue<></code></a> <br />
<a href="io/manip/quoted.html" title="cpp/io/manip/quoted"> <code>quoted()<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=19" title="Edit section: R">edit</a>]</span> <span class="mw-headline" id="R">R</span></h1>
<p><a href="iterator/iterator_tags.html" title="cpp/iterator/iterator tags"> <code>random_access_iterator_tag</code></a> <br />
<a href="numeric/random/random_device.html" title="cpp/numeric/random/random device"> <code>random_device</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/random_shuffle.html" title="cpp/algorithm/random shuffle"> <code>random_shuffle()<></code></a> <span class="t-mark-rev t-until-cxx17">(until C++17)</span> <br />
<a href="error/range_error/range_error.html" title="cpp/error/range error"> <code>range_error</code></a> <br />
<a href="numeric/random.html" title="cpp/numeric/random"> <code>ranlux24</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random.html" title="cpp/numeric/random"> <code>ranlux24_base</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random.html" title="cpp/numeric/random"> <code>ranlux48</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random.html" title="cpp/numeric/random"> <code>ranlux48_base</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/rank.html" title="cpp/types/rank"> <code>rank<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/rank.html" title="cpp/types/rank"> <code>rank_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>ratio</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio/ratio_add.html" title="cpp/numeric/ratio/ratio add"> <code>ratio_add<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio/ratio_divide.html" title="cpp/numeric/ratio/ratio divide"> <code>ratio_divide<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio/ratio_equal.html" title="cpp/numeric/ratio/ratio equal"> <code>ratio_equal<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio/ratio_equal.html" title="cpp/numeric/ratio/ratio equal"> <code>ratio_equal_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/ratio/ratio_greater.html" title="cpp/numeric/ratio/ratio greater"> <code>ratio_greater<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio/ratio_greater_equal.html" title="cpp/numeric/ratio/ratio greater equal"> <code>ratio_greater_equal<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio/ratio_greater_equal.html" title="cpp/numeric/ratio/ratio greater equal"> <code>ratio_greater_equal_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/ratio/ratio_greater.html" title="cpp/numeric/ratio/ratio greater"> <code>ratio_greater_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/ratio/ratio_less.html" title="cpp/numeric/ratio/ratio less"> <code>ratio_less<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio/ratio_less_equal.html" title="cpp/numeric/ratio/ratio less equal"> <code>ratio_less_equal<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio/ratio_less_equal.html" title="cpp/numeric/ratio/ratio less equal"> <code>ratio_less_equal_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/ratio/ratio_less.html" title="cpp/numeric/ratio/ratio less"> <code>ratio_less_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/ratio/ratio_multiply.html" title="cpp/numeric/ratio/ratio multiply"> <code>ratio_multiply<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio/ratio_not_equal.html" title="cpp/numeric/ratio/ratio not equal"> <code>ratio_not_equal<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio/ratio_not_equal.html" title="cpp/numeric/ratio/ratio not equal"> <code>ratio_not_equal_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/ratio/ratio_subtract.html" title="cpp/numeric/ratio/ratio subtract"> <code>ratio_subtract<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="iterator/rbegin.html" title="cpp/iterator/rbegin"> <code>rbegin<>()</code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="numeric/complex/real2.html" title="cpp/numeric/complex/real2"> <code>real<>()</code></a> <br />
<a href="thread/recursive_mutex.html" title="cpp/thread/recursive mutex"> <code>recursive_mutex</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/recursive_timed_mutex.html" title="cpp/thread/recursive timed mutex"> <code>recursive_timed_mutex</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/reduce.html" title="cpp/algorithm/reduce"> <code>reduce()<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/functional/ref.html" title="cpp/utility/functional/ref"> <code>ref<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/functional/reference_wrapper.html" title="cpp/utility/functional/reference wrapper"> <code>reference_wrapper<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/basic_regex.html" title="cpp/regex/basic regex"> <code>regex</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
▶ <a href="symbol_index/regex_constants.html" title="cpp/symbol index/regex constants"> <code>regex_constants</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_error.html" title="cpp/regex/regex error"> <code>regex_error</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_iterator.html" title="cpp/regex/regex iterator"> <code>regex_iterator<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_match.html" title="cpp/regex/regex match"> <code>regex_match<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_replace.html" title="cpp/regex/regex replace"> <code>regex_replace<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_search.html" title="cpp/regex/regex search"> <code>regex_search<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_token_iterator.html" title="cpp/regex/regex token iterator"> <code>regex_token_iterator<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_traits.html" title="cpp/regex/regex traits"> <code>regex_traits<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/pointer_cast.html" title="cpp/memory/shared ptr/pointer cast"> <code>reinterpret_pointer_cast<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/remainder.html" title="cpp/numeric/math/remainder"> <code>remainder()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/remove.html" title="cpp/algorithm/remove"> <code>remove()<></code></a> <br />
<a href="types/remove_all_extents.html" title="cpp/types/remove all extents"> <code>remove_all_extents<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/remove_all_extents.html" title="cpp/types/remove all extents"> <code>remove_all_extents_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/remove_cv.html" title="cpp/types/remove cv"> <code>remove_const<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/remove_cv.html" title="cpp/types/remove cv"> <code>remove_const_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="algorithm/remove_copy.html" title="cpp/algorithm/remove copy"> <code>remove_copy()<></code></a> <br />
<a href="algorithm/remove_copy.html" title="cpp/algorithm/remove copy"> <code>remove_copy_if()<></code></a> <br />
<a href="types/remove_cv.html" title="cpp/types/remove cv"> <code>remove_cv<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/remove_cv.html" title="cpp/types/remove cv"> <code>remove_cv_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/remove_extent.html" title="cpp/types/remove extent"> <code>remove_extent<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/remove_extent.html" title="cpp/types/remove extent"> <code>remove_extent_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/remove_pointer.html" title="cpp/types/remove pointer"> <code>remove_pointer<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/remove_pointer.html" title="cpp/types/remove pointer"> <code>remove_pointer_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/remove_reference.html" title="cpp/types/remove reference"> <code>remove_reference<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/remove_reference.html" title="cpp/types/remove reference"> <code>remove_reference_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="types/remove_cv.html" title="cpp/types/remove cv"> <code>remove_volatile<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/remove_cv.html" title="cpp/types/remove cv"> <code>remove_volatile_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="numeric/math/remquo.html" title="cpp/numeric/math/remquo"> <code>remquo()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="iterator/rend.html" title="cpp/iterator/rend"> <code>rend<>()</code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="algorithm/replace.html" title="cpp/algorithm/replace"> <code>replace()<></code></a> <br />
<a href="algorithm/replace_copy_if.html" title="cpp/algorithm/replace copy"> <code>replace_copy()<></code></a> <br />
<a href="algorithm/replace_copy_if.html" title="cpp/algorithm/replace copy if" class="mw-redirect"> <code>replace_copy_if()<></code></a> <br />
<a href="algorithm/replace.html" title="cpp/algorithm/replace"> <code>replace_if()<></code></a> <br />
<a href="io/manip/resetiosflags.html" title="cpp/io/manip/resetiosflags"> <code>resetiosflags()</code></a> <br />
<a href="types/result_of.html" title="cpp/types/result of"> <code>result_of<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <span class="t-mark">(deprecated since C++17)</span> <br />
<a href="types/result_of.html" title="cpp/types/result of"> <code>result_of_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <span class="t-mark">(deprecated since C++17)</span> <br />
<a href="error/rethrow_exception.html" title="cpp/error/rethrow exception"> <code>rethrow_exception</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/rethrow_if_nested.html" title="cpp/error/rethrow if nested"> <code>rethrow_if_nested<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/reverse.html" title="cpp/algorithm/reverse"> <code>reverse()<></code></a> <br />
<a href="algorithm/reverse_copy.html" title="cpp/algorithm/reverse copy"> <code>reverse_copy()<></code></a> <br />
<a href="iterator/reverse_iterator.html" title="cpp/iterator/reverse iterator"> <code>reverse_iterator<></code></a> <br />
<a href="numeric/special_math/riemann_zeta.html" title="cpp/numeric/special math/riemann zeta"> <code>riemann_zeta()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/riemann_zeta.html" title="cpp/numeric/special math/riemann zeta"> <code>riemann_zetaf()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/riemann_zeta.html" title="cpp/numeric/special math/riemann zeta"> <code>riemann_zetal()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="io/manip/left.html" title="cpp/io/manip/left"> <code>right()</code></a> <br />
<a href="numeric/math/rint.html" title="cpp/numeric/math/rint"> <code>rint()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/rotate.html" title="cpp/algorithm/rotate"> <code>rotate()<></code></a> <br />
<a href="algorithm/rotate_copy.html" title="cpp/algorithm/rotate copy"> <code>rotate_copy()<></code></a> <br />
<a href="numeric/math/round.html" title="cpp/numeric/math/round"> <code>round()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/numeric_limits/float_round_style.html" title="cpp/types/numeric limits/float round style"> <code>round_indeterminate</code></a> <br />
<a href="types/numeric_limits/float_round_style.html" title="cpp/types/numeric limits/float round style"> <code>round_to_nearest</code></a> <br />
<a href="types/numeric_limits/float_round_style.html" title="cpp/types/numeric limits/float round style"> <code>round_toward_infinity</code></a> <br />
<a href="types/numeric_limits/float_round_style.html" title="cpp/types/numeric limits/float round style"> <code>round_toward_neg_infinity</code></a> <br />
<a href="types/numeric_limits/float_round_style.html" title="cpp/types/numeric limits/float round style"> <code>round_toward_zero</code></a> <br />
<a href="error/runtime_error/runtime_error.html" title="cpp/error/runtime error"> <code>runtime_error</code></a> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=20" title="Edit section: S">edit</a>]</span> <span class="mw-headline" id="S">S</span></h1>
<p><a href="algorithm/sample.html" title="cpp/algorithm/sample"> <code>sample()<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/math/scalbn.html" title="cpp/numeric/math/scalbn"> <code>scalbln()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/scalbn.html" title="cpp/numeric/math/scalbn"> <code>scalbn()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/manip/fixed.html" title="cpp/io/manip/fixed"> <code>scientific()</code></a> <br />
<a href="memory/scoped_allocator_adaptor.html" title="cpp/memory/scoped allocator adaptor"> <code>scoped_allocator_adaptor<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/search.html" title="cpp/algorithm/search"> <code>search()<></code></a> <br />
<a href="algorithm/search_n.html" title="cpp/algorithm/search n"> <code>search_n()<></code></a> <br />
<a href="numeric/random/seed_seq.html" title="cpp/numeric/random/seed seq"> <code>seed_seq</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="container/set.html" title="cpp/container/set"> <code>set<></code></a> <br />
<a href="io/manip/setbase.html" title="cpp/io/manip/setbase"> <code>setbase()</code></a> <br />
<a href="algorithm/set_difference.html" title="cpp/algorithm/set difference"> <code>set_difference()<></code></a> <br />
<a href="io/manip/setfill.html" title="cpp/io/manip/setfill"> <code>setfill()<></code></a> <br />
<a href="algorithm/set_intersection.html" title="cpp/algorithm/set intersection"> <code>set_intersection()<></code></a> <br />
<a href="io/manip/setiosflags.html" title="cpp/io/manip/setiosflags"> <code>setiosflags()</code></a> <br />
<a href="locale/setlocale.html" title="cpp/locale/setlocale"> <code>setlocale()</code></a> <br />
<a href="memory/new/set_new_handler.html" title="cpp/memory/new/set new handler"> <code>set_new_handler()</code></a> <br />
<a href="io/manip/setprecision.html" title="cpp/io/manip/setprecision"> <code>setprecision()</code></a> <br />
<a href="algorithm/set_symmetric_difference.html" title="cpp/algorithm/set symmetric difference"> <code>set_symmetric_difference()<></code></a> <br />
<a href="error/set_terminate.html" title="cpp/error/set terminate"> <code>set_terminate()</code></a> <br />
<a href="algorithm/set_union.html" title="cpp/algorithm/set union"> <code>set_union()<></code></a> <br />
<a href="io/manip/setw.html" title="cpp/io/manip/setw"> <code>setw()</code></a> <br />
<a href="thread/shared_future.html" title="cpp/thread/shared future"> <code>shared_future<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/shared_lock.html" title="cpp/thread/shared lock"> <code>shared_lock<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="thread/shared_mutex.html" title="cpp/thread/shared mutex"> <code>shared_mutex</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/shared_ptr.html" title="cpp/memory/shared ptr"> <code>shared_ptr<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/shared_timed_mutex.html" title="cpp/thread/shared timed mutex"> <code>shared_timed_mutex</code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="io/manip/showbase.html" title="cpp/io/manip/showbase"> <code>showbase()</code></a> <br />
<a href="io/manip/showpoint.html" title="cpp/io/manip/showpoint"> <code>showpoint()</code></a> <br />
<a href="io/manip/showpos.html" title="cpp/io/manip/showpos"> <code>showpos()</code></a> <br />
<a href="algorithm/random_shuffle.html" title="cpp/algorithm/random shuffle"> <code>shuffle()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/shuffle_order_engine.html" title="cpp/numeric/random/shuffle order engine"> <code>shuffle_order_engine<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/signbit.html" title="cpp/numeric/math/signbit"> <code>signbit()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/sin.html" title="cpp/numeric/math/sin"> <code>sin()</code></a> <br />
<a href="numeric/complex/sin.html" title="cpp/numeric/complex/sin"> <code>sin<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/sin.html" title="cpp/numeric/valarray/sin"> <code>sin<></code></a> (std::valarray) <br />
<a href="numeric/math/sinh.html" title="cpp/numeric/math/sinh"> <code>sinh()</code></a> <br />
<a href="numeric/complex/sinh.html" title="cpp/numeric/complex/sinh"> <code>sinh<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/sinh.html" title="cpp/numeric/valarray/sinh"> <code>sinh<></code></a> (std::valarray) <br />
<a href="iterator/size.html" title="cpp/iterator/size"> <code>size<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/size_t.html" title="cpp/types/size t"> <code>size_t</code></a> <br />
<a href="io/manip/skipws.html" title="cpp/io/manip/skipws"> <code>skipws()</code></a> <br />
<a href="numeric/valarray/slice.html" title="cpp/numeric/valarray/slice"> <code>slice</code></a> <br />
<a href="numeric/valarray/slice_array.html" title="cpp/numeric/valarray/slice array"> <code>slice_array<></code></a> <br />
<a href="regex/match_results.html" title="cpp/regex/match results"> <code>smatch</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/sort.html" title="cpp/algorithm/sort"> <code>sort()<></code></a> <br />
<a href="algorithm/sort_heap.html" title="cpp/algorithm/sort heap"> <code>sort_heap()<></code></a> <br />
<a href="numeric/special_math/sph_bessel.html" title="cpp/numeric/special math/sph bessel"> <code>sph_bessel()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/sph_bessel.html" title="cpp/numeric/special math/sph bessel"> <code>sph_besself()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/sph_bessel.html" title="cpp/numeric/special math/sph bessel"> <code>sph_bessell()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/sph_legendre.html" title="cpp/numeric/special math/sph legendre"> <code>sph_legendre()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/sph_legendre.html" title="cpp/numeric/special math/sph legendre"> <code>sph_legendref()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/sph_legendre.html" title="cpp/numeric/special math/sph legendre"> <code>sph_legendrel()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/sph_neumann.html" title="cpp/numeric/special math/sph neumann"> <code>sph_neumann()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/sph_neumann.html" title="cpp/numeric/special math/sph neumann"> <code>sph_neumannf()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/special_math/sph_neumann.html" title="cpp/numeric/special math/sph neumann"> <code>sph_neumannl()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/math/sqrt.html" title="cpp/numeric/math/sqrt"> <code>sqrt()</code></a> <br />
<a href="numeric/complex/sqrt.html" title="cpp/numeric/complex/sqrt"> <code>sqrt<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/sqrt.html" title="cpp/numeric/valarray/sqrt"> <code>sqrt<></code></a> (std::valarray) <br />
<a href="regex/regex_iterator.html" title="cpp/regex/regex iterator"> <code>sregex_iterator</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_token_iterator.html" title="cpp/regex/regex token iterator"> <code>sregex_token_iterator</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/sub_match.html" title="cpp/regex/sub match"> <code>ssub_match</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/stable_partition.html" title="cpp/algorithm/stable partition"> <code>stable_partition()<></code></a> <br />
<a href="algorithm/stable_sort.html" title="cpp/algorithm/stable sort"> <code>stable_sort()<></code></a> <br />
<a href="container/stack.html" title="cpp/container/stack"> <code>stack<></code></a> <br />
<a href="language/static_assert.html" title="cpp/language/static assert"> <code>static_assert()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/shared_ptr/pointer_cast.html" title="cpp/memory/shared ptr/pointer cast"> <code>static_pointer_cast<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io.html" title="cpp/io"> <code>streambuf</code></a> <br />
<a href="io/streamoff.html" title="cpp/io/streamoff"> <code>streamoff</code></a> <br />
<a href="io/fpos.html" title="cpp/io/fpos"> <code>streampos</code></a> <br />
<a href="io/streamsize.html" title="cpp/io/streamsize"> <code>streamsize</code></a> <br />
<a href="string/basic_string.html" title="cpp/string/basic string"> <code>string</code></a> <br />
<a href="io.html" title="cpp/io"> <code>stringbuf</code></a> <br />
<a href="io.html" title="cpp/io"> <code>stringstream</code></a> <br />
<a href="string/basic_string_view.html" title="cpp/string/basic string view"> <code>string_view</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="numeric/random/student_t_distribution.html" title="cpp/numeric/random/student t distribution"> <code>student_t_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/sub_match.html" title="cpp/regex/sub match"> <code>sub_match<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/subtract_with_carry_engine.html" title="cpp/numeric/random/subtract with carry engine"> <code>subtract_with_carry_engine<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/swap.html" title="cpp/algorithm/swap"> <code>swap()<></code></a> <br />
<a href="algorithm/swap_ranges.html" title="cpp/algorithm/swap ranges"> <code>swap_ranges()<></code></a> <br />
<a href="error/system_category.html" title="cpp/error/system category"> <code>system_category</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/system_error.html" title="cpp/error/system error"> <code>system_error</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=21" title="Edit section: T">edit</a>]</span> <span class="mw-headline" id="T">T</span></h1>
<p><a href="numeric/math/tan.html" title="cpp/numeric/math/tan"> <code>tan()</code></a> <br />
<a href="numeric/complex/tan.html" title="cpp/numeric/complex/tan"> <code>tan<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/tan.html" title="cpp/numeric/valarray/tan"> <code>tan<></code></a> (std::valarray) <br />
<a href="numeric/math/tanh.html" title="cpp/numeric/math/tanh"> <code>tanh()</code></a> <br />
<a href="numeric/complex/tanh.html" title="cpp/numeric/complex/tanh"> <code>tanh<>()</code></a> (std::complex) <br />
<a href="numeric/valarray/tanh.html" title="cpp/numeric/valarray/tanh"> <code>tanh<></code></a> (std::valarray) <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>tera</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/terminate.html" title="cpp/error/terminate"> <code>terminate()</code></a> <br />
<a href="error/terminate_handler.html" title="cpp/error/terminate handler"> <code>terminate_handler</code></a> <br />
<a href="numeric/math/tgamma.html" title="cpp/numeric/math/tgamma"> <code>tgamma()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
▶ <a href="symbol_index/this_thread.html" title="cpp/symbol index/this thread"> <code>this_thread</code></a> <br />
<a href="thread/thread.html" title="cpp/thread/thread"> <code>thread</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/throw_with_nested.html" title="cpp/error/throw with nested"> <code>throw_with_nested<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/tuple/tie.html" title="cpp/utility/tuple/tie"> <code>tie<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/time_base.html" title="cpp/locale/time base"> <code>time_base</code></a> <br />
<a href="thread/timed_mutex.html" title="cpp/thread/timed mutex"> <code>timed_mutex</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="locale/time_get.html" title="cpp/locale/time get"> <code>time_get<></code></a> <br />
<a href="locale/time_get_byname.html" title="cpp/locale/time get byname"> <code>time_get_byname<></code></a> <br />
<a href="locale/time_put.html" title="cpp/locale/time put"> <code>time_put<></code></a> <br />
<a href="locale/time_put_byname.html" title="cpp/locale/time put byname"> <code>time_put_byname<></code></a> <br />
<a href="types/byte.html" title="cpp/types/byte"> <code>to_integer()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="locale/tolower.html" title="cpp/locale/tolower"> <code>tolower<>()</code></a> <br />
<a href="locale/toupper.html" title="cpp/locale/toupper"> <code>toupper<>()</code></a> <br />
<a href="algorithm/transform.html" title="cpp/algorithm/transform"> <code>transform()<></code></a> <br />
<a href="algorithm/transform_exclusive_scan.html" title="cpp/algorithm/transform exclusive scan"> <code>transform_exclusive_scan()<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/transform_inclusive_scan.html" title="cpp/algorithm/transform inclusive scan"> <code>transform_inclusive_scan()<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/transform_reduce.html" title="cpp/algorithm/transform reduce"> <code>transform_reduce()<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/integral_constant.html" title="cpp/types/integral constant"> <code>true_type</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/math/trunc.html" title="cpp/numeric/math/trunc"> <code>trunc()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/try_lock.html" title="cpp/thread/try lock"> <code>try_lock<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/lock_tag.html" title="cpp/thread/lock tag"> <code>try_to_lock</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="thread/lock_tag_t.html" title="cpp/thread/lock tag t"> <code>try_to_lock_t</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/tuple.html" title="cpp/utility/tuple"> <code>tuple<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/tuple/tuple_cat.html" title="cpp/utility/tuple/tuple cat"> <code>tuple_cat<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="container/array/tuple_element.html" title="cpp/container/array/tuple element"> <code>tuple_element<></code></a> (std::array) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/pair/tuple_element.html" title="cpp/utility/pair/tuple element"> <code>tuple_element<></code></a> (std::pair) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/tuple/tuple_element.html" title="cpp/utility/tuple/tuple element"> <code>tuple_element<></code></a> (std::tuple) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="container/array/tuple_size.html" title="cpp/container/array/tuple size"> <code>tuple_size<>()</code></a> (std::array) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/pair/tuple_size.html" title="cpp/utility/pair/tuple size"> <code>tuple_size<>()</code></a> (std::pair) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/tuple/tuple_size.html" title="cpp/utility/tuple/tuple size"> <code>tuple_size<>()</code></a> (std::tuple) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/type_index.html" title="cpp/types/type index"> <code>type_index</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/type_info.html" title="cpp/types/type info"> <code>type_info</code></a> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=22" title="Edit section: U">edit</a>]</span> <span class="mw-headline" id="U">U</span></h1>
<p><a href="io/fpos.html" title="cpp/io/fpos"> <code>u16streampos<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="string/basic_string.html" title="cpp/string/basic string"> <code>u16string</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="string/basic_string_view.html" title="cpp/string/basic string view"> <code>u16string_view</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="io/fpos.html" title="cpp/io/fpos"> <code>u32streampos<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="string/basic_string.html" title="cpp/string/basic string"> <code>u32string</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="string/basic_string_view.html" title="cpp/string/basic string view"> <code>u32string_view</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="error/uncaught_exception.html" title="cpp/error/uncaught exception"> <code>uncaught_exceptions</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/gc/undeclare_no_pointers.html" title="cpp/memory/gc/undeclare no pointers"> <code>undeclare_no_pointers()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/gc/undeclare_reachable.html" title="cpp/memory/gc/undeclare reachable"> <code>undeclare_reachable<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="error/underflow_error/underflow_error.html" title="cpp/error/underflow error"> <code>underflow_error</code></a> <br />
<a href="types/underlying_type.html" title="cpp/types/underlying type"> <code>underlying_type<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="types/underlying_type.html" title="cpp/types/underlying type"> <code>underlying_type_t<></code></a> <span class="t-mark-rev t-since-cxx14">(since C++14)</span> <br />
<a href="numeric/random/uniform_int_distribution.html" title="cpp/numeric/random/uniform int distribution"> <code>uniform_int_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/uniform_real_distribution.html" title="cpp/numeric/random/uniform real distribution"> <code>uniform_real_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/uninitialized_copy.html" title="cpp/memory/uninitialized copy"> <code>uninitialized_copy()<></code></a> <br />
<a href="memory/uninitialized_copy_n.html" title="cpp/memory/uninitialized copy n"> <code>uninitialized_copy_n()<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/uninitialized_default_construct.html" title="cpp/memory/uninitialized default construct"> <code>uninitialized_default_construct<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/uninitialized_default_construct_n.html" title="cpp/memory/uninitialized default construct n"> <code>uninitialized_default_construct_n<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/uninitialized_fill.html" title="cpp/memory/uninitialized fill"> <code>uninitialized_fill()<></code></a> <br />
<a href="memory/uninitialized_fill_n.html" title="cpp/memory/uninitialized fill n"> <code>uninitialized_fill_n()<></code></a> <br />
<a href="memory/uninitialized_move.html" title="cpp/memory/uninitialized move"> <code>uninitialized_move<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/uninitialized_move_n.html" title="cpp/memory/uninitialized move n"> <code>uninitialized_move_n<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/uninitialized_value_construct.html" title="cpp/memory/uninitialized value construct"> <code>uninitialized_value_construct<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="memory/uninitialized_value_construct_n.html" title="cpp/memory/uninitialized value construct n"> <code>uninitialized_value_construct_n<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="algorithm/unique.html" title="cpp/algorithm/unique"> <code>unique()<></code></a> <br />
<a href="algorithm/unique_copy.html" title="cpp/algorithm/unique copy"> <code>unique_copy()<></code></a> <br />
<a href="thread/unique_lock.html" title="cpp/thread/unique lock"> <code>unique_lock<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/unique_ptr.html" title="cpp/memory/unique ptr"> <code>unique_ptr<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/manip/unitbuf.html" title="cpp/io/manip/unitbuf"> <code>unitbuf()</code></a> <br />
<a href="container/unordered_map.html" title="cpp/container/unordered map"> <code>unordered_map<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="container/unordered_multimap.html" title="cpp/container/unordered multimap"> <code>unordered_multimap<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="container/unordered_multiset.html" title="cpp/container/unordered multiset"> <code>unordered_multiset<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="container/unordered_set.html" title="cpp/container/unordered set"> <code>unordered_set<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="algorithm/upper_bound.html" title="cpp/algorithm/upper bound"> <code>upper_bound()<></code></a> <br />
<a href="io/manip/uppercase.html" title="cpp/io/manip/uppercase"> <code>uppercase()</code></a> <br />
<a href="locale/use_facet.html" title="cpp/locale/use facet"> <code>use_facet<>()</code></a> <br />
<a href="memory/uses_allocator.html" title="cpp/memory/uses allocator"> <code>uses_allocator<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="utility/tuple/uses_allocator.html" title="cpp/utility/tuple/uses allocator"> <code>uses_allocator<></code></a> (std::tuple) <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/uses_allocator.html" title="cpp/memory/uses allocator"> <code>uses_allocator_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=23" title="Edit section: V">edit</a>]</span> <span class="mw-headline" id="V">V</span></h1>
<p><a href="numeric/valarray.html" title="cpp/numeric/valarray"> <code>valarray<></code></a> <br />
<a href="utility/variant.html" title="cpp/utility/variant"> <code>variant<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/variant/variant_alternative.html" title="cpp/utility/variant/variant alternative"> <code>variant_alternative<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/variant/variant_alternative.html" title="cpp/utility/variant/variant alternative"> <code>variant_alternative_t<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/variant/variant_npos.html" title="cpp/utility/variant/variant npos"> <code>variant_npos</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/variant/variant_size.html" title="cpp/utility/variant/variant size"> <code>variant_size<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="utility/variant/variant_size.html" title="cpp/utility/variant/variant size"> <code>variant_size_v<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="container/vector.html" title="cpp/container/vector"> <code>vector<></code></a> <br />
<a href="utility/variant/visit.html" title="cpp/utility/variant/visit"> <code>visit<>()</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
<a href="types/void_t.html" title="cpp/types/void t"> <code>void_t</code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=24" title="Edit section: W">edit</a>]</span> <span class="mw-headline" id="W">W</span></h1>
<p><a href="locale/wbuffer_convert.html" title="cpp/locale/wbuffer convert"> <code>wbuffer_convert<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/cerr.html" title="cpp/io/cerr"> <code>wcerr</code></a> <br />
<a href="io/cin.html" title="cpp/io/cin"> <code>wcin</code></a> <br />
<a href="io/clog.html" title="cpp/io/clog"> <code>wclog</code></a> <br />
<a href="regex/match_results.html" title="cpp/regex/match results"> <code>wcmatch</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io/cout.html" title="cpp/io/cout"> <code>wcout</code></a> <br />
<a href="regex/regex_iterator.html" title="cpp/regex/regex iterator"> <code>wcregex_iterator</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_token_iterator.html" title="cpp/regex/regex token iterator"> <code>wcregex_token_iterator</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/sub_match.html" title="cpp/regex/sub match"> <code>wcsub_match</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="memory/weak_ptr.html" title="cpp/memory/weak ptr"> <code>weak_ptr<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/random/weibull_distribution.html" title="cpp/numeric/random/weibull distribution"> <code>weibull_distribution<></code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io.html" title="cpp/io"> <code>wfilebuf</code></a> <br />
<a href="io.html" title="cpp/io"> <code>wfstream</code></a> <br />
<a href="io.html" title="cpp/io"> <code>wifstream</code></a> <br />
<a href="io.html" title="cpp/io"> <code>wios</code></a> <br />
<a href="io.html" title="cpp/io"> <code>wiostream</code></a> <br />
<a href="io.html" title="cpp/io"> <code>wistream</code></a> <br />
<a href="io.html" title="cpp/io"> <code>wistringstream</code></a> <br />
<a href="io.html" title="cpp/io"> <code>wofstream</code></a> <br />
<a href="io.html" title="cpp/io"> <code>wostream</code></a> <br />
<a href="io.html" title="cpp/io"> <code>wstreambuf</code></a> <br />
<a href="io/manip/ws.html" title="cpp/io/manip/ws"> <code>ws()<></code></a> <br />
<a href="io/fpos.html" title="cpp/io/fpos"> <code>wstreampos</code></a> <br />
<a href="io.html" title="cpp/io"> <code>wostringstream</code></a> <br />
<a href="regex/basic_regex.html" title="cpp/regex/basic regex"> <code>wregex</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/match_results.html" title="cpp/regex/match results"> <code>wsmatch</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_iterator.html" title="cpp/regex/regex iterator"> <code>wsregex_iterator</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/regex_token_iterator.html" title="cpp/regex/regex token iterator"> <code>wsregex_token_iterator</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="regex/sub_match.html" title="cpp/regex/sub match"> <code>wssub_match</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="string/basic_string.html" title="cpp/string/basic string"> <code>wstring</code></a> <br />
<a href="io.html" title="cpp/io"> <code>wstringbuf</code></a> <br />
<a href="locale/wstring_convert.html" title="cpp/locale/wstring convert"> <code>wstring_convert<>()</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="io.html" title="cpp/io"> <code>wstringstream</code></a> <br />
<a href="string/basic_string_view.html" title="cpp/string/basic string view"> <code>wstring_view<></code></a> <span class="t-mark-rev t-since-cxx17">(since C++17)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=25" title="Edit section: X">edit</a>]</span> <span class="mw-headline" id="X">X</span></h1>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=26" title="Edit section: Y">edit</a>]</span> <span class="mw-headline" id="Y">Y</span></h1>
<p><a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>yocto</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>yotta</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<h1><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=edit&section=27" title="Edit section: Z">edit</a>]</span> <span class="mw-headline" id="Z">Z</span></h1>
<p><a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>zepto</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
<a href="numeric/ratio.html" title="cpp/numeric/ratio"> <code>zetta</code></a> <span class="t-mark-rev t-since-cxx11">(since C++11)</span> <br />
</p>
<!--
NewPP limit report
Preprocessor visited node count: 10958/1000000
Preprocessor generated node count: 31445/1000000
Post‐expand include size: 94334/2097152 bytes
Template argument size: 18450/2097152 bytes
Highest expansion depth: 13/40
Expensive parser function count: 0/100
-->
<!-- Saved in parser cache with key mwiki1-mwiki_en_:pcache:idhash:15682-0!*!0!!en!*!* and timestamp 20170314013052 -->
</div> <!-- /bodycontent -->
<!-- printfooter -->
<div class="printfooter">
Retrieved from "<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&oldid=90856">http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&oldid=90856</a>" </div>
<!-- /printfooter -->
<!-- catlinks -->
<div id='catlinks' class='catlinks catlinks-allhidden'></div> <!-- /catlinks -->
<div class="visualClear"></div>
<!-- debughtml -->
<!-- /debughtml -->
</div>
<!-- /bodyContent -->
</div>
</div>
<!-- /content -->
<!-- footer -->
<div id="cpp-footer-base" class="noprint">
<div id="footer">
<div id="cpp-navigation">
<h5>Navigation</h5>
<ul>
<li id="n-Support-us"><a href="http://www.cppreference.com/support" rel="nofollow">Support us</a></li><li id="n-recentchanges"><a href="http://en.cppreference.com/w/Special:RecentChanges" title="A list of recent changes in the wiki [r]" accesskey="r">Recent changes</a></li><li id="n-FAQ"><a href="http://en.cppreference.com/w/Cppreference:FAQ">FAQ</a></li><li id="n-Offline-version"><a href="http://en.cppreference.com/w/Cppreference:Archives">Offline version</a></li> </ul>
</div>
<div id="cpp-toolbox">
<h5><span>Toolbox</span><a href="symbol_index.html#"></a></h5>
<ul>
<li id="t-whatlinkshere"><a href="http://en.cppreference.com/w/Special:WhatLinksHere/cpp/symbol_index" title="A list of all wiki pages that link here [j]" accesskey="j">What links here</a></li><li id="t-recentchangeslinked"><a href="http://en.cppreference.com/w/Special:RecentChangesLinked/cpp/symbol_index" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li><li id="t-upload"><a href="http://upload.cppreference.com/w/Special:Upload" title="Upload files [u]" accesskey="u">Upload file</a></li><li id="t-specialpages"><a href="http://en.cppreference.com/w/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q">Special pages</a></li><li id="t-print"><a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&printable=yes" rel="alternate" title="Printable version of this page [p]" accesskey="p">Printable version</a></li><li id="t-permalink"><a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&oldid=90856" title="Permanent link to this revision of the page">Permanent link</a></li><li id="t-info"><a href="http://en.cppreference.com/mwiki/index.php?title=cpp/symbol_index&action=info">Page information</a></li> </ul>
</div>
<div id="cpp-languages">
<div><ul><li>In other languages</li></ul></div>
<div><ul>
<li class="interwiki-zh"><a href="http://zh.cppreference.com/w/cpp/symbol_index" title="cpp/symbol index" lang="zh" hreflang="zh">中文</a></li> </ul></div>
</div>
<ul id="footer-info">
<li id="footer-info-lastmod"> This page was last modified on 13 March 2017, at 18:30.</li>
<li id="footer-info-viewcount">This page has been accessed 5,501 times.</li>
</ul>
<ul id="footer-places">
<li id="footer-places-privacy"><a href="http://en.cppreference.com/w/Cppreference:Privacy_policy" title="Cppreference:Privacy policy">Privacy policy</a></li>
<li id="footer-places-about"><a href="http://en.cppreference.com/w/Cppreference:About" title="Cppreference:About">About cppreference.com</a></li>
<li id="footer-places-disclaimer"><a href="http://en.cppreference.com/w/Cppreference:General_disclaimer" title="Cppreference:General disclaimer">Disclaimers</a></li>
</ul>
<ul id="footer-icons" class="noprint">
<li id="footer-poweredbyico">
<a href="http://www.mediawiki.org/"><img src="../../mwiki/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" width="88" height="31" /></a> <a href="http://qbnz.com/highlighter/"><img src="../../../upload.cppreference.com/mwiki/images/2/2b/powered_by_geshi_88x31.png" alt="Powered by GeSHi" height="31" width="88" /></a> <a href="http://www.tigertech.net/referral/cppreference.com"><img src="../../../upload.cppreference.com/mwiki/images/9/94/powered_by_tigertech_88x31.png" alt="Hosted by Tiger Technologies" height="31" width="88" /></a> </li>
</ul>
<div style="clear:both">
</div>
</div>
</div>
<!-- /footer -->
<script>if(window.mw){
mw.loader.state({"site":"loading","user":"missing","user.groups":"ready"});
}</script>
<script src="../../mwiki/load.php%3Fdebug=false&lang=en&modules=skins.cppreference2&only=scripts&skin=cppreference2&*"></script>
<script>if(window.mw){
mw.loader.load(["mediawiki.action.view.postEdit","mediawiki.user","mediawiki.page.ready","mediawiki.searchSuggest","mediawiki.hidpi","ext.gadget.ColiruCompiler"], null, true);
}</script>
<script src="../../mwiki/load.php%3Fdebug=false&lang=en&modules=site&only=scripts&skin=cppreference2&*"></script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-2828341-1']);
_gaq.push(['_setDomainName', 'cppreference.com']);
_gaq.push(['_trackPageview']);
</script><!-- Served in 0.063 secs. -->
</body>
<!-- Cached 20170314013319 -->
</html>
|