1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Reference</title>
<link rel="stylesheet" href="../boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../proto.html" title="Chapter 15. Boost.Proto">
<link rel="prev" href="users_guide.html" title="Users' Guide">
<link rel="next" href="../boost/proto/term.html" title="Struct template term">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../boost.png"></td>
<td align="center"><a href="../../../index.html">Home</a></td>
<td align="center"><a href="../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="users_guide.html"><img src="../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../proto.html"><img src="../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../boost/proto/term.html"><img src="../../../doc/html/images/next.png" alt="Next"></a>
</div>
<div class="section" title="Reference">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="proto.reference"></a>Reference</h2></div></div></div>
<div class="toc"><dl>
<dt><span class="section"><a href="reference.html#proto.concepts">Concepts</a></span></dt>
<dt><span class="section"><a href="reference.html#proto.reference.classes">Classes</a></span></dt>
<dt><span class="section"><a href="reference.html#proto.reference.functions">Functions</a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.args_hpp">Header <boost/proto/args.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.core_hpp">Header <boost/proto/core.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.debug_hpp">Header <boost/proto/debug.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.deep_copy_hpp">Header <boost/proto/deep_copy.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.domain_hpp">Header <boost/proto/domain.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.eval_hpp">Header <boost/proto/eval.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.expr_hpp">Header <boost/proto/expr.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.extends_hpp">Header <boost/proto/extends.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.fusion_hpp">Header <boost/proto/fusion.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.generate_hpp">Header <boost/proto/generate.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.literal_hpp">Header <boost/proto/literal.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.make_expr_hpp">Header <boost/proto/make_expr.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.matches_hpp">Header <boost/proto/matches.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.operators_hpp">Header <boost/proto/operators.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.proto_hpp">Header <boost/proto/proto.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.proto_fwd_hpp">Header <boost/proto/proto_fwd.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.proto_typeof_hpp">Header <boost/proto/proto_typeof.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.repeat_hpp">Header <boost/proto/repeat.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.tags_hpp">Header <boost/proto/tags.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.traits_hpp">Header <boost/proto/traits.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.transform.arg_hpp">Header <boost/proto/transform/arg.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.transform.call_hpp">Header <boost/proto/transform/call.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.transform.default_hpp">Header <boost/proto/transform/default.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.transform.fold_hpp">Header <boost/proto/transform/fold.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.transform.fold_tree_hpp">Header <boost/proto/transform/fold_tree.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.transform.impl_hpp">Header <boost/proto/transform/impl.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.transform.lazy_hpp">Header <boost/proto/transform/lazy.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.transform.make_hpp">Header <boost/proto/transform/make.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.transform.pass_through_hpp">Header <boost/proto/transform/pass_through.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.transform.when_hpp">Header <boost/proto/transform/when.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.context.callable_hpp">Header <boost/proto/context/callable.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.context.default_hpp">Header <boost/proto/context/default.hpp></a></span></dt>
<dt><span class="section"><a href="reference.html#header.boost.proto.context.null_hpp">Header <boost/proto/context/null.hpp></a></span></dt>
</dl></div>
<div class="section" title="Concepts">
<div class="titlepage"><div><div><h3 class="title">
<a name="proto.concepts"></a>Concepts</h3></div></div></div>
<div class="itemizedlist"><ul class="itemizedlist" type="disc">
<li class="listitem"><a class="link" href="../CallableTransform.html" title="Concept CallableTransform">CallableTransform</a></li>
<li class="listitem"><a class="link" href="../ObjectTransform.html" title="Concept ObjectTransform">ObjectTransform</a></li>
<li class="listitem"><a class="link" href="../PrimitiveTransform.html" title="Concept PrimitiveTransform">PrimitiveTransform</a></li>
<li class="listitem"><a class="link" href="../Transform.html" title="Concept Transform">Transform</a></li>
<li class="listitem"><a class="link" href="../PolymorphicFunctionObject.html" title="Concept PolymorphicFunctionObject">PolymorphicFunctionObject</a></li>
</ul></div>
</div>
<div class="section" title="Classes">
<div class="titlepage"><div><div><h3 class="title">
<a name="proto.reference.classes"></a>Classes</h3></div></div></div>
<div class="itemizedlist"><ul class="itemizedlist" type="disc">
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/_.html" title="Struct _">proto::_</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/_byref.html" title="Struct _byref">proto::_byref</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/_byval.html" title="Struct _byval">proto::_byval</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/_child_c.html" title="Struct template _child_c">proto::_child_c</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/_data.html" title="Struct _data">proto::_data</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/_default.html" title="Struct template _default">proto::_default</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/_expr.html" title="Struct _expr">proto::_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/_state.html" title="Struct _state">proto::_state</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/_value.html" title="Struct _value">proto::_value</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/address_of.html" title="Struct template address_of">proto::address_of</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/and_.html" title="Struct template and_">proto::and_</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/arity_of.html" title="Struct template arity_of">proto::arity_of</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/assign.html" title="Struct template assign">proto::assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/binary_expr.html" title="Struct template binary_expr">proto::binary_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/bitwise_and.html" title="Struct template bitwise_and">proto::bitwise_and</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/bitwise_and_assign.html" title="Struct template bitwise_and_assign">proto::bitwise_and_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/bitwise_or.html" title="Struct template bitwise_or">proto::bitwise_or</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/bitwise_or_assign.html" title="Struct template bitwise_or_assign">proto::bitwise_or_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/bitwise_xor.html" title="Struct template bitwise_xor">proto::bitwise_xor</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/bitwise_xor_assign.html" title="Struct template bitwise_xor_assign">proto::bitwise_xor_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/by_value_generator.html" title="Struct by_value_generator">proto::by_value_generator</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/call.html" title="Struct template call">proto::call</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/callable.html" title="Struct callable">proto::callable</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/comma.html" title="Struct template comma">proto::comma</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/complement.html" title="Struct template complement">proto::complement</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/compose_generators.html" title="Struct template compose_generators">proto::compose_generators</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/context/callable_context.html" title="Struct template callable_context">proto::context::callable_context</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/context/callable_eval.html" title="Struct template callable_eval">proto::context::callable_eval</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/context/default_context.html" title="Struct default_context">proto::context::default_context</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/context/default_eval.html" title="Struct template default_eval">proto::context::default_eval</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/context/null_context.html" title="Struct null_context">proto::context::null_context</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/context/null_eval.html" title="Struct template null_eval">proto::context::null_eval</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/convertible_to.html" title="Struct template convertible_to">proto::convertible_to</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/deduce_domain.html" title="Struct deduce_domain">proto::deduce_domain</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/default_domain.html" title="Struct default_domain">proto::default_domain</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/default_generator.html" title="Struct default_generator">proto::default_generator</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/dereference.html" title="Struct template dereference">proto::dereference</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/divides.html" title="Struct template divides">proto::divides</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/divides_assign.html" title="Struct template divides_assign">proto::divides_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/domain.html" title="Struct template domain">proto::domain</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/domain_of.html" title="Struct template domain_of">proto::domain_of</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/equal_to.html" title="Struct template equal_to">proto::equal_to</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/exact.html" title="Struct template exact">proto::exact</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/expr.html" title="Struct template expr">proto::expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/extends.html" title="Struct template extends">proto::extends</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/fold.html" title="Struct template fold">proto::fold</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/fold_tree.html" title="Struct template fold_tree">proto::fold_tree</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/function.html" title="Struct template function">proto::function</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/as_child.html" title="Struct template as_child">proto::functional::as_child</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/as_expr.html" title="Struct template as_expr">proto::functional::as_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/child.html" title="Struct template child">proto::functional::child</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/child_c.html" title="Struct template child_c">proto::functional::child_c</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/deep_copy.html" title="Struct deep_copy">proto::functional::deep_copy</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/display_expr.html" title="Struct display_expr">proto::functional::display_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/eval.html" title="Struct eval">proto::functional::eval</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/flatten.html" title="Struct flatten">proto::functional::flatten</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/left.html" title="Struct left">proto::functional::left</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/pop_front.html" title="Struct pop_front">proto::functional::pop_front</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/reverse.html" title="Struct reverse">proto::functional::reverse</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/right.html" title="Struct right">proto::functional::right</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/unpack_expr.html" title="Struct template unpack_expr">proto::functional::unpack_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/functional/value.html" title="Struct value">proto::functional::value</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/generator.html" title="Struct template generator">proto::generator</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/greater.html" title="Struct template greater">proto::greater</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/greater_equal.html" title="Struct template greater_equal">proto::greater_equal</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/if_.html" title="Struct template if_">proto::if_</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/if_else_.html" title="Struct template if_else_">proto::if_else_</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/is_aggregate.html" title="Struct template is_aggregate">proto::is_aggregate</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/is_callable.html" title="Struct template is_callable">proto::is_callable</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/is_domain.html" title="Struct template is_domain">proto::is_domain</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/is_expr.html" title="Struct template is_expr">proto::is_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/is_extension.html" title="Struct template is_extension">proto::is_extension</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/is_proto_expr.html" title="Struct is_proto_expr">proto::is_proto_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/lazy.html" title="Struct template lazy">proto::lazy</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/less.html" title="Struct template less">proto::less</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/less_equal.html" title="Struct template less_equal">proto::less_equal</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/listN.html" title="Struct template listN">proto::list1<>, proto::list2<>, ...</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/literal.html" title="Struct template literal">proto::literal</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/logical_and.html" title="Struct template logical_and">proto::logical_and</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/logical_not.html" title="Struct template logical_not">proto::logical_not</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/logical_or.html" title="Struct template logical_or">proto::logical_or</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/make.html" title="Struct template make">proto::make</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/matches.html" title="Struct template matches">proto::matches</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/mem_ptr.html" title="Struct template mem_ptr">proto::mem_ptr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/minus.html" title="Struct template minus">proto::minus</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/minus_assign.html" title="Struct template minus_assign">proto::minus_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/modulus.html" title="Struct template modulus">proto::modulus</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/modulus_assign.html" title="Struct template modulus_assign">proto::modulus_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/multiplies.html" title="Struct template multiplies">proto::multiplies</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/multiplies_assign.html" title="Struct template multiplies_assign">proto::multiplies_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/nary_expr.html" title="Struct template nary_expr">proto::nary_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/negate.html" title="Struct template negate">proto::negate</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/noinvoke.html" title="Struct template noinvoke">proto::noinvoke</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/not_.html" title="Struct template not_">proto::not_</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/not_equal_to.html" title="Struct template not_equal_to">proto::not_equal_to</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/nullary_expr.html" title="Struct template nullary_expr">proto::nullary_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/or_.html" title="Struct template or_">proto::or_</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/otherwise.html" title="Struct template otherwise">proto::otherwise</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/pass_through.html" title="Struct template pass_through">proto::pass_through</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/plus.html" title="Struct template plus">proto::plus</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/plus_assign.html" title="Struct template plus_assign">proto::plus_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/pod_generator.html" title="Struct template pod_generator">proto::pod_generator</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/post_dec.html" title="Struct template post_dec">proto::post_dec</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/post_inc.html" title="Struct template post_inc">proto::post_inc</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/pre_dec.html" title="Struct template pre_dec">proto::pre_dec</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/pre_inc.html" title="Struct template pre_inc">proto::pre_inc</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/protect.html" title="Struct template protect">proto::protect</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/as_child.html" title="Struct template as_child">proto::result_of::as_child</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/as_expr.html" title="Struct template as_expr">proto::result_of::as_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/child.html" title="Struct template child">proto::result_of::child</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/child_c.html" title="Struct template child_c">proto::result_of::child_c</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/deep_copy.html" title="Struct template deep_copy">proto::result_of::deep_copy</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/eval.html" title="Struct template eval">proto::result_of::eval</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/flatten.html" title="Struct template flatten">proto::result_of::flatten</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/left.html" title="Struct template left">proto::result_of::left</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/make_expr.html" title="Struct template make_expr">proto::result_of::make_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/right.html" title="Struct template right">proto::result_of::right</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/unpack_expr.html" title="Struct template unpack_expr">proto::result_of::unpack_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/result_of/value.html" title="Struct template value">proto::result_of::value</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/reverse_fold.html" title="Struct template reverse_fold">proto::reverse_fold</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/reverse_fold_tree.html" title="Struct template reverse_fold_tree">proto::reverse_fold_tree</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/shift_left.html" title="Struct template shift_left">proto::shift_left</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/shift_left_assign.html" title="Struct template shift_left_assign">proto::shift_left_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/shift_right.html" title="Struct template shift_right">proto::shift_right</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/shift_right_assign.html" title="Struct template shift_right_assign">proto::shift_right_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/subscript.html" title="Struct template subscript">proto::subscript</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/switch_.html" title="Struct template switch_">proto::switch_</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/address_of.html" title="Struct address_of">proto::tag::address_of</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/assign.html" title="Struct assign">proto::tag::assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/bitwise_and.html" title="Struct bitwise_and">proto::tag::bitwise_and</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/bitwise_and_assign.html" title="Struct bitwise_and_assign">proto::tag::bitwise_and_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/bitwise_or.html" title="Struct bitwise_or">proto::tag::bitwise_or</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/bitwise_or_assign.html" title="Struct bitwise_or_assign">proto::tag::bitwise_or_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/bitwise_xor.html" title="Struct bitwise_xor">proto::tag::bitwise_xor</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/bitwise_xor_assign.html" title="Struct bitwise_xor_assign">proto::tag::bitwise_xor_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/comma.html" title="Struct comma">proto::tag::comma</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/complement.html" title="Struct complement">proto::tag::complement</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/dereference.html" title="Struct dereference">proto::tag::dereference</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/divides.html" title="Struct divides">proto::tag::divides</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/divides_assign.html" title="Struct divides_assign">proto::tag::divides_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/equal_to.html" title="Struct equal_to">proto::tag::equal_to</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/function.html" title="Struct function">proto::tag::function</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/greater.html" title="Struct greater">proto::tag::greater</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/greater_equal.html" title="Struct greater_equal">proto::tag::greater_equal</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/if_else_.html" title="Struct if_else_">proto::tag::if_else_</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/less.html" title="Struct less">proto::tag::less</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/less_equal.html" title="Struct less_equal">proto::tag::less_equal</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/logical_and.html" title="Struct logical_and">proto::tag::logical_and</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/logical_not.html" title="Struct logical_not">proto::tag::logical_not</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/logical_or.html" title="Struct logical_or">proto::tag::logical_or</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/mem_ptr.html" title="Struct mem_ptr">proto::tag::mem_ptr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/minus.html" title="Struct minus">proto::tag::minus</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/minus_assign.html" title="Struct minus_assign">proto::tag::minus_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/modulus.html" title="Struct modulus">proto::tag::modulus</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/modulus_assign.html" title="Struct modulus_assign">proto::tag::modulus_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/multiplies.html" title="Struct multiplies">proto::tag::multiplies</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/multiplies_assign.html" title="Struct multiplies_assign">proto::tag::multiplies_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/negate.html" title="Struct negate">proto::tag::negate</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/not_equal_to.html" title="Struct not_equal_to">proto::tag::not_equal_to</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/plus.html" title="Struct plus">proto::tag::plus</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/plus_assign.html" title="Struct plus_assign">proto::tag::plus_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/post_dec.html" title="Struct post_dec">proto::tag::post_dec</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/post_inc.html" title="Struct post_inc">proto::tag::post_inc</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/pre_dec.html" title="Struct pre_dec">proto::tag::pre_dec</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/pre_inc.html" title="Struct pre_inc">proto::tag::pre_inc</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/shift_left.html" title="Struct shift_left">proto::tag::shift_left</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/shift_left_assign.html" title="Struct shift_left_assign">proto::tag::shift_left_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/shift_right.html" title="Struct shift_right">proto::tag::shift_right</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/shift_right_assign.html" title="Struct shift_right_assign">proto::tag::shift_right_assign</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/subscript.html" title="Struct subscript">proto::tag::subscript</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/terminal.html" title="Struct terminal">proto::tag::terminal</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag/unary_plus.html" title="Struct unary_plus">proto::tag::unary_plus</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/tag_of.html" title="Struct template tag_of">proto::tag_of</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/term.html" title="Struct template term">proto::term</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/terminal.html" title="Struct template terminal">proto::terminal</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/transform.html" title="Struct template transform">proto::transform</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/transform_impl.html" title="Struct template transform_impl">proto::transform_impl</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/unary_expr.html" title="Struct template unary_expr">proto::unary_expr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/unary_plus.html" title="Struct template unary_plus">proto::unary_plus</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/unexpr.html" title="Struct template unexpr">proto::unexpr</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/vararg.html" title="Struct template vararg">proto::vararg</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/when.html" title="Struct template when">proto::when</a></code>
</code></li>
</ul></div>
</div>
<div class="section" title="Functions">
<div class="titlepage"><div><div><h3 class="title">
<a name="proto.reference.functions"></a>Functions</h3></div></div></div>
<div class="itemizedlist"><ul class="itemizedlist" type="disc">
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/as_child_id1264710.html" title="Function as_child">proto::as_child()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/as_expr_id1264483.html" title="Function as_expr">proto::as_expr()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/child_id1264914.html" title="Function child">proto::child()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/child_c_id1265156.html" title="Function child_c">proto::child_c()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/deep_copy_id1235315.html" title="Function template deep_copy">proto::deep_copy()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/display_expr_id1234972.html" title="Function display_expr">proto::display_expr()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/eval_id1236049.html" title="Function eval">proto::eval()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/flatten_id1239332.html" title="Function flatten">proto::flatten()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="reference.html#boost.proto.if_else">proto::if_else()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/left_id1265424.html" title="Function left">proto::left()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/lit.html" title="Function lit">proto::lit()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/make_expr_id1241909.html" title="Function make_expr">proto::make_expr()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/right_id1265548.html" title="Function right">proto::right()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/unpack_expr_id1242154.html" title="Function unpack_expr">proto::unpack_expr()</a></code>
</code></li>
<li class="listitem"><code class="computeroutput">
<code class="computeroutput"><a class="link" href="../boost/proto/value_id1265317.html" title="Function value">proto::value()</a></code>
</code></li>
</ul></div>
</div>
<div class="section" title="Header <boost/proto/args.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.args_hpp"></a>Header <<a href="../../../boost/proto/args.hpp" target="_top">boost/proto/args.hpp</a>></h3></div></div></div>
<p>
Contains definitions of the <code class="computeroutput">
<a class="link" href="../boost/proto/term.html" title="Struct template term">proto::term<></a></code>,
<code class="computeroutput"><a class="link" href="../boost/proto/listN.html" title="Struct template listN">proto::list1<></a></code>,
<code class="computeroutput"><a class="link" href="../boost/proto/listN.html" title="Struct template listN">proto::list2<></a></code>, etc.
class templates.
</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/term.html" title="Struct template term">term</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span>... Arg> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/listN.html" title="Struct template listN">listN</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/core.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.core_hpp"></a>Header <<a href="../../../boost/proto/core.hpp" target="_top">boost/proto/core.hpp</a>></h3></div></div></div>
<p>Includes all of Proto, except the contexts, transforms, debug utilities and Boost.Typeof registrations.</p>
</div>
<div class="section" title="Header <boost/proto/debug.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.debug_hpp"></a>Header <<a href="../../../boost/proto/debug.hpp" target="_top">boost/proto/debug.hpp</a>></h3></div></div></div>
<p>Utilities for debugging Proto expression trees </p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr> <span class="type"><span class="bold"><strong>void</strong></span></span> <a class="link" href="../boost/proto/display_expr_id1234972.html" title="Function display_expr">display_expr</a>(Expr <span class="bold"><strong>const</strong></span> &, std::ostream &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr> <span class="type"><span class="bold"><strong>void</strong></span></span> <a class="link" href="../boost/proto/display_expr_id1234972.html" title="Function display_expr">display_expr</a>(Expr <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>namespace</strong></span> functional {
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/display_expr.html" title="Struct display_expr">display_expr</a>;
}
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/deep_copy.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.deep_copy_hpp"></a>Header <<a href="../../../boost/proto/deep_copy.hpp" target="_top">boost/proto/deep_copy.hpp</a>></h3></div></div></div>
<p>Replace all nodes stored by reference by nodes stored by value.</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/deep_copy.html" title="Struct template deep_copy">proto::result_of::deep_copy</a><Expr>::type</span> <a class="link" href="../boost/proto/deep_copy_id1235315.html" title="Function template deep_copy">deep_copy</a>(Expr <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>namespace</strong></span> result_of {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/deep_copy.html" title="Struct template deep_copy">deep_copy</a>;
}
<span class="bold"><strong>namespace</strong></span> functional {
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/deep_copy.html" title="Struct deep_copy">deep_copy</a>;
}
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/domain.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.domain_hpp"></a>Header <<a href="../../../boost/proto/domain.hpp" target="_top">boost/proto/domain.hpp</a>></h3></div></div></div>
<p>
Contains definition of <code class="computeroutput"><a class="link" href="../boost/proto/domain.html" title="Struct template domain">proto::domain<></a>
</code> class template and helpers for defining domains with a generator and a grammar for controlling
operator overloading.
</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Generator = <a class="link" href="../boost/proto/default_generator.html" title="Struct default_generator">proto::default_generator</a>,
<span class="bold"><strong>typename</strong></span> Grammar = <a class="link" href="../boost/proto/_.html" title="Struct _">proto::_</a>>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/domain.html" title="Struct template domain">domain</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/default_domain.html" title="Struct default_domain">default_domain</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/deduce_domain.html" title="Struct deduce_domain">deduce_domain</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/is_domain.html" title="Struct template is_domain">is_domain</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/domain_of.html" title="Struct template domain_of">domain_of</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/eval.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.eval_hpp"></a>Header <<a href="../../../boost/proto/eval.hpp" target="_top">boost/proto/eval.hpp</a>></h3></div></div></div>
<p>
Contains the
<code class="computeroutput">
<a class="link" href="../boost/proto/eval_id1236049.html" title="Function eval">proto::eval()</a>
</code> expression evaluator.
</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr, <span class="bold"><strong>typename</strong></span> Context>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/eval.html" title="Struct template eval">proto::result_of::eval</a>< Expr, Context >::type</span>
<a class="link" href="../boost/proto/eval_id1236049.html" title="Function eval">eval</a>(Expr &, Context &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr, <span class="bold"><strong>typename</strong></span> Context>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/eval.html" title="Struct template eval">proto::result_of::eval</a>< Expr, Context >::type</span>
<a class="link" href="../boost/proto/eval_id1236049.html" title="Function eval">eval</a>(Expr &, Context <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>namespace</strong></span> functional {
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/eval.html" title="Struct eval">eval</a>;
}
<span class="bold"><strong>namespace</strong></span> result_of {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr, <span class="bold"><strong>typename</strong></span> Context> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/eval.html" title="Struct template eval">eval</a>;
}
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/expr.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.expr_hpp"></a>Header <<a href="../../../boost/proto/expr.hpp" target="_top">boost/proto/expr.hpp</a>></h3></div></div></div>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> Args, <span class="bold"><strong>long</strong></span> Arity = Args::arity> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/expr.html" title="Struct template expr">expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/unexpr.html" title="Struct template unexpr">unexpr</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/extends.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.extends_hpp"></a>Header <<a href="../../../boost/proto/extends.hpp" target="_top">boost/proto/extends.hpp</a>></h3></div></div></div>
<p>Macros and a base class for defining end-user expression types </p>
<pre class="synopsis">
<a class="link" href="../BOOST_PROTO_BASIC_EXTENDS.html" title="Macro BOOST_PROTO_BASIC_EXTENDS">BOOST_PROTO_BASIC_EXTENDS</a>(Expr, Derived, Domain)
<a class="link" href="../BOOST_PROTO_EXTENDS_ASSIGN.html" title="Macro BOOST_PROTO_EXTENDS_ASSIGN">BOOST_PROTO_EXTENDS_ASSIGN</a>()
<a class="link" href="../BOOST_PROTO_EXTENDS_SUBSCRIPT.html" title="Macro BOOST_PROTO_EXTENDS_SUBSCRIPT">BOOST_PROTO_EXTENDS_SUBSCRIPT</a>()
<a class="link" href="../BOOST_PROTO_EXTENDS_FUNCTION.html" title="Macro BOOST_PROTO_EXTENDS_FUNCTION">BOOST_PROTO_EXTENDS_FUNCTION</a>()
<a class="link" href="../BOOST_PROTO_EXTENDS.html" title="Macro BOOST_PROTO_EXTENDS">BOOST_PROTO_EXTENDS</a>(Expr, Derived, Domain)</pre>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/is_proto_expr.html" title="Struct is_proto_expr">is_proto_expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr, <span class="bold"><strong>typename</strong></span> Derived,
<span class="bold"><strong>typename</strong></span> Domain = <a class="link" href="../boost/proto/default_domain.html" title="Struct default_domain">proto::default_domain</a>>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/extends.html" title="Struct template extends">extends</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/fusion.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.fusion_hpp"></a>Header <<a href="../../../boost/proto/fusion.hpp" target="_top">boost/proto/fusion.hpp</a>></h3></div></div></div>
<p>Make any Proto expression a valid Fusion sequence </p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/flatten.html" title="Struct template flatten">proto::result_of::flatten</a>< Expr >::type <span class="bold"><strong>const</strong></span></span> <a class="link" href="../boost/proto/flatten_id1239332.html" title="Function flatten">flatten</a>(Expr &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/flatten.html" title="Struct template flatten">proto::result_of::flatten</a>< Expr <span class="bold"><strong>const</strong></span> >::type <span class="bold"><strong>const</strong></span></span>
<a class="link" href="../boost/proto/flatten_id1239332.html" title="Function flatten">flatten</a>(Expr <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>namespace</strong></span> functional {
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/flatten.html" title="Struct flatten">flatten</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/pop_front.html" title="Struct pop_front">pop_front</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/reverse.html" title="Struct reverse">reverse</a>;
}
<span class="bold"><strong>namespace</strong></span> result_of {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/flatten.html" title="Struct template flatten">flatten</a>;
}
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/generate.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.generate_hpp"></a>Header <<a href="../../../boost/proto/generate.hpp" target="_top">boost/proto/generate.hpp</a>></h3></div></div></div>
<p>Contains definition of <code class="computeroutput"><a class="link" href="../boost/proto/generator.html" title="Struct template generator">proto::generator<></a></code>
class template and friends that end users can use to generate domain-specific expression wrappers.</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/default_generator.html" title="Struct default_generator">default_generator</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>template</strong></span>< <span class="bold"><strong>typename</strong></span> > <span class="bold"><strong>class</strong></span> Extends> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/generator.html" title="Struct template generator">generator</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>template</strong></span>< <span class="bold"><strong>typename</strong></span> > <span class="bold"><strong>class</strong></span> Extends> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/pod_generator.html" title="Struct template pod_generator">pod_generator</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/by_value_generator.html" title="Struct by_value_generator">by_value_generator</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> First, <span class="bold"><strong>typename</strong></span> Second> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/compose_generators.html" title="Struct template compose_generators">compose_generators</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/literal.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.literal_hpp"></a>Header <<a href="../../../boost/proto/literal.hpp" target="_top">boost/proto/literal.hpp</a>></h3></div></div></div>
<p>
The
<code class="computeroutput"><a class="link" href="../boost/proto/literal.html" title="Struct template literal">proto::literal<></a></code>
terminal wrapper, and the
<code class="computeroutput"><a class="link" href="../boost/proto/lit.html" title="Function lit">proto::lit()</a></code>
function for creating
<code class="computeroutput"><a class="link" href="../boost/proto/literal.html" title="Struct template literal">proto::literal<></a></code>
wrappers.
</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> Domain = <a class="link" href="../boost/proto/default_domain.html" title="Struct default_domain">proto::default_domain</a>>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/literal.html" title="Struct template literal">literal</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="type"><a class="link" href="../boost/proto/literal.html" title="Struct template literal">proto::literal</a>< T & > <span class="bold"><strong>const</strong></span></span> <a class="link" href="../boost/proto/lit.html" title="Function lit">lit</a>(T &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="type"><a class="link" href="../boost/proto/literal.html" title="Struct template literal">proto::literal</a>< T <span class="bold"><strong>const</strong></span> & > <span class="bold"><strong>const</strong></span></span> <a class="link" href="../boost/proto/lit.html" title="Function lit">lit</a>(T <span class="bold"><strong>const</strong></span> &);
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/make_expr.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.make_expr_hpp"></a>Header <<a href="../../../boost/proto/make_expr.hpp" target="_top">boost/proto/make_expr.hpp</a>></h3></div></div></div>
<p>
Definition of the <code class="computeroutput"><a class="link" href="../boost/proto/make_expr_id1241909.html" title="Function make_expr">proto::make_expr()</a>
</code> and <code class="computeroutput"><a class="link" href="../boost/proto/unpack_expr_id1242154.html" title="Function unpack_expr">proto::unpack_expr()</a>
</code> utilities for building Proto expression nodes from child nodes or from a Fusion sequence of child
nodes, respectively.
</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span>... A>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/make_expr.html" title="Struct template make_expr">proto::result_of::make_expr</a><Tag, A <span class="bold"><strong>const</strong></span>...>::type <span class="bold"><strong>const</strong></span></span>
<a class="link" href="../boost/proto/make_expr_id1241909.html" title="Function make_expr">make_expr</a>(A <span class="bold"><strong>const</strong></span> &...);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> Domain, <span class="bold"><strong>typename</strong></span>... A>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/make_expr.html" title="Struct template make_expr">proto::result_of::make_expr</a><Tag, Domain, A <span class="bold"><strong>const</strong></span>...>::type <span class="bold"><strong>const</strong></span></span>
<a class="link" href="../boost/proto/make_expr_id1241909.html" title="Function make_expr">make_expr</a>(A <span class="bold"><strong>const</strong></span> &...);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> Sequence>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/unpack_expr.html" title="Struct template unpack_expr">proto::result_of::unpack_expr</a><Tag, Sequence <span class="bold"><strong>const</strong></span>>::type <span class="bold"><strong>const</strong></span></span>
<a class="link" href="../boost/proto/unpack_expr_id1242154.html" title="Function unpack_expr">unpack_expr</a>(Sequence <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> Domain, <span class="bold"><strong>typename</strong></span> Sequence>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/unpack_expr.html" title="Struct template unpack_expr">proto::result_of::unpack_expr</a><Tag, Domain, Sequence <span class="bold"><strong>const</strong></span>>::type <span class="bold"><strong>const</strong></span></span>
<a class="link" href="../boost/proto/unpack_expr_id1242154.html" title="Function unpack_expr">unpack_expr</a>(Sequence <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>namespace</strong></span> functional {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> Domain = <a class="link" href="../boost/proto/deduce_domain.html" title="Struct deduce_domain">proto::deduce_domain</a>>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">make_expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> Domain = <a class="link" href="../boost/proto/deduce_domain.html" title="Struct deduce_domain">proto::deduce_domain</a>>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/unpack_expr.html" title="Struct template unpack_expr">unpack_expr</a>;
}
<span class="bold"><strong>namespace</strong></span> result_of {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span>... A> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/make_expr.html" title="Struct template make_expr">make_expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> Domain, <span class="bold"><strong>typename</strong></span>... A>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/make_expr_Tag__Domain___id1241534.html" title="Struct template make_expr<Tag, Domain, A...>">make_expr</a><Tag, Domain, A...>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> Sequence, <span class="bold"><strong>typename</strong></span> Void = <span class="type"><span class="bold"><strong>void</strong></span></span>>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/unpack_expr.html" title="Struct template unpack_expr">unpack_expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> Domain, <span class="bold"><strong>typename</strong></span> Sequence>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/unpack_expr_Tag__Domain_id1241806.html" title="Struct template unpack_expr<Tag, Domain, Sequence>">unpack_expr</a><Tag, Domain, Sequence>;
}
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/matches.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.matches_hpp"></a>Header <<a href="../../../boost/proto/matches.hpp" target="_top">boost/proto/matches.hpp</a>></h3></div></div></div>
<p>
Contains definition of the
<code class="computeroutput">
<a class="link" href="../boost/proto/matches.html" title="Struct template matches">proto::matches<></a>
</code>
metafunction for determining if a given expression matches a given pattern.
</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/_.html" title="Struct _">_</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Grammar> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/not_.html" title="Struct template not_">not_</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> If, <span class="bold"><strong>typename</strong></span> Then = <span class="type"><a class="link" href="../boost/proto/_.html" title="Struct _">proto::_</a></span>,
<span class="bold"><strong>typename</strong></span> Else = <span class="type"><a class="link" href="../boost/proto/not_.html" title="Struct template not_">proto::not_</a><<a class="link" href="../boost/proto/_.html" title="Struct _">proto::_</a>></span> >
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/if_.html" title="Struct template if_">if_</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span>... G> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/or_.html" title="Struct template or_">or_</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span>... G> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/and_.html" title="Struct template and_">and_</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Cases> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/switch_.html" title="Struct template switch_">switch_</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/exact.html" title="Struct template exact">exact</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/convertible_to.html" title="Struct template convertible_to">convertible_to</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Grammar> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/vararg.html" title="Struct template vararg">vararg</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr, <span class="bold"><strong>typename</strong></span> Grammar> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/matches.html" title="Struct template matches">matches</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/operators.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.operators_hpp"></a>Header <<a href="../../../boost/proto/operators.hpp" target="_top">boost/proto/operators.hpp</a>></h3></div></div></div>
<p>Contains all the overloaded operators that make it possible to build Proto expression trees. </p>
<pre class="synopsis">
<a class="link" href="../BOOST_PROTO_DEFINE_OPERATORS.html" title="Macro BOOST_PROTO_DEFINE_OPERATORS">BOOST_PROTO_DEFINE_OPERATORS</a>(Trait, Domain)</pre>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/is_extension.html" title="Struct template is_extension">is_extension</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator+_id1245437"></a><span class="bold"><strong>operator</strong></span>+(Arg & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator+_id1245466"></a><span class="bold"><strong>operator</strong></span>+(Arg <span class="bold"><strong>const</strong></span> & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-_id1245494"></a><span class="bold"><strong>operator</strong></span>-(Arg & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-_id1245523"></a><span class="bold"><strong>operator</strong></span>-(Arg <span class="bold"><strong>const</strong></span> & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1245551"></a><span class="bold"><strong>operator</strong></span>*(Arg & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1245580"></a><span class="bold"><strong>operator</strong></span>*(Arg <span class="bold"><strong>const</strong></span> & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator~_id1245608"></a><span class="bold"><strong>operator</strong></span>~(Arg & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator~_id1245637"></a><span class="bold"><strong>operator</strong></span>~(Arg <span class="bold"><strong>const</strong></span> & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&_id1245665"></a><span class="bold"><strong>operator</strong></span>&(Arg & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&_id1245694"></a><span class="bold"><strong>operator</strong></span>&(Arg <span class="bold"><strong>const</strong></span> & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator!_id1245722"></a><span class="bold"><strong>operator</strong></span>!(Arg & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator!_id1245751"></a><span class="bold"><strong>operator</strong></span>!(Arg <span class="bold"><strong>const</strong></span> & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator++_id1245780"></a><span class="bold"><strong>operator</strong></span>++(Arg & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator++_id1245808"></a><span class="bold"><strong>operator</strong></span>++(Arg <span class="bold"><strong>const</strong></span> & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator--_id1245837"></a><span class="bold"><strong>operator</strong></span>--(Arg & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator--_id1245865"></a><span class="bold"><strong>operator</strong></span>--(Arg <span class="bold"><strong>const</strong></span> & arg);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator++_id1245894"></a><span class="bold"><strong>operator</strong></span>++(Arg & arg, <span class="bold"><strong>int</strong></span>);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator++_id1245932"></a><span class="bold"><strong>operator</strong></span>++(Arg <span class="bold"><strong>const</strong></span> & arg, <span class="bold"><strong>int</strong></span>);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator--_id1245970"></a><span class="bold"><strong>operator</strong></span>--(Arg & arg, <span class="bold"><strong>int</strong></span>);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Arg> <span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator--_id1246008"></a><span class="bold"><strong>operator</strong></span>--(Arg <span class="bold"><strong>const</strong></span> & arg, <span class="bold"><strong>int</strong></span>);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246046"></a><span class="bold"><strong>operator</strong></span><<(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246089"></a><span class="bold"><strong>operator</strong></span><<(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246132"></a><span class="bold"><strong>operator</strong></span><<(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246174"></a><span class="bold"><strong>operator</strong></span><<(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246217"></a><span class="bold"><strong>operator</strong></span>>>(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246260"></a><span class="bold"><strong>operator</strong></span>>>(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246302"></a><span class="bold"><strong>operator</strong></span>>>(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246345"></a><span class="bold"><strong>operator</strong></span>>>(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246388"></a><span class="bold"><strong>operator</strong></span>*(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246430"></a><span class="bold"><strong>operator</strong></span>*(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246473"></a><span class="bold"><strong>operator</strong></span>*(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1246516"></a><span class="bold"><strong>operator</strong></span>*(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator/_id1246558"></a><span class="bold"><strong>operator</strong></span>/(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator/_id1246601"></a><span class="bold"><strong>operator</strong></span>/(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator/_id1246644"></a><span class="bold"><strong>operator</strong></span>/(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator/_id1246686"></a><span class="bold"><strong>operator</strong></span>/(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%_id1246729"></a><span class="bold"><strong>operator</strong></span>%(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%_id1246772"></a><span class="bold"><strong>operator</strong></span>%(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%_id1246814"></a><span class="bold"><strong>operator</strong></span>%(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%_id1246857"></a><span class="bold"><strong>operator</strong></span>%(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator+_id1246900"></a><span class="bold"><strong>operator</strong></span>+(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator+_id1246942"></a><span class="bold"><strong>operator</strong></span>+(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator+_id1246985"></a><span class="bold"><strong>operator</strong></span>+(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator+_id1247028"></a><span class="bold"><strong>operator</strong></span>+(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-_id1247070"></a><span class="bold"><strong>operator</strong></span>-(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-_id1247113"></a><span class="bold"><strong>operator</strong></span>-(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-_id1247156"></a><span class="bold"><strong>operator</strong></span>-(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-_id1247198"></a><span class="bold"><strong>operator</strong></span>-(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1247241"></a><span class="bold"><strong>operator</strong></span><(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1247284"></a><span class="bold"><strong>operator</strong></span><(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1247326"></a><span class="bold"><strong>operator</strong></span><(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1247369"></a><span class="bold"><strong>operator</strong></span><(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1247412"></a><span class="bold"><strong>operator</strong></span>>(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1247454"></a><span class="bold"><strong>operator</strong></span>>(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1247497"></a><span class="bold"><strong>operator</strong></span>>(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1247540"></a><span class="bold"><strong>operator</strong></span>>(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1247582"></a><span class="bold"><strong>operator</strong></span><=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1247625"></a><span class="bold"><strong>operator</strong></span><=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1247668"></a><span class="bold"><strong>operator</strong></span><=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1247710"></a><span class="bold"><strong>operator</strong></span><=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1247753"></a><span class="bold"><strong>operator</strong></span>>=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1247796"></a><span class="bold"><strong>operator</strong></span>>=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1247838"></a><span class="bold"><strong>operator</strong></span>>=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1247881"></a><span class="bold"><strong>operator</strong></span>>=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator==_id1247924"></a><span class="bold"><strong>operator</strong></span>==(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator==_id1247966"></a><span class="bold"><strong>operator</strong></span>==(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator==_id1248009"></a><span class="bold"><strong>operator</strong></span>==(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator==_id1248052"></a><span class="bold"><strong>operator</strong></span>==(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator!=_id1248094"></a><span class="bold"><strong>operator</strong></span>!=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator!=_id1248137"></a><span class="bold"><strong>operator</strong></span>!=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator!=_id1248180"></a><span class="bold"><strong>operator</strong></span>!=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator!=_id1248222"></a><span class="bold"><strong>operator</strong></span>!=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1248265"></a><span class="bold"><strong>operator</strong></span>||(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1248308"></a><span class="bold"><strong>operator</strong></span>||(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1248350"></a><span class="bold"><strong>operator</strong></span>||(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1248393"></a><span class="bold"><strong>operator</strong></span>||(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&&_id1248436"></a><span class="bold"><strong>operator</strong></span>&&(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&&_id1248478"></a><span class="bold"><strong>operator</strong></span>&&(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&&_id1248521"></a><span class="bold"><strong>operator</strong></span>&&(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&&_id1248564"></a><span class="bold"><strong>operator</strong></span>&&(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&_id1248606"></a><span class="bold"><strong>operator</strong></span>&(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&_id1248649"></a><span class="bold"><strong>operator</strong></span>&(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&_id1248692"></a><span class="bold"><strong>operator</strong></span>&(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&_id1248734"></a><span class="bold"><strong>operator</strong></span>&(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1248777"></a><span class="bold"><strong>operator</strong></span>|(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1248820"></a><span class="bold"><strong>operator</strong></span>|(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1248862"></a><span class="bold"><strong>operator</strong></span>|(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_id1248905"></a><span class="bold"><strong>operator</strong></span>|(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%5E_id1248948"></a><span class="bold"><strong>operator</strong></span>^(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%5E_id1248990"></a><span class="bold"><strong>operator</strong></span>^(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%5E_id1249033"></a><span class="bold"><strong>operator</strong></span>^(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%5E_id1249076"></a><span class="bold"><strong>operator</strong></span>^(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator,_id1249118"></a><span class="bold"><strong>operator</strong></span>,(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator,_id1249161"></a><span class="bold"><strong>operator</strong></span>,(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator,_id1249204"></a><span class="bold"><strong>operator</strong></span>,(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator,_id1249246"></a><span class="bold"><strong>operator</strong></span>,(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-_id1249289"></a><span class="bold"><strong>operator</strong></span>->*(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-_id1249332"></a><span class="bold"><strong>operator</strong></span>->*(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-_id1249374"></a><span class="bold"><strong>operator</strong></span>->*(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-_id1249417"></a><span class="bold"><strong>operator</strong></span>->*(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249460"></a><span class="bold"><strong>operator</strong></span><<=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249502"></a><span class="bold"><strong>operator</strong></span><<=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249545"></a><span class="bold"><strong>operator</strong></span><<=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249588"></a><span class="bold"><strong>operator</strong></span><<=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249630"></a><span class="bold"><strong>operator</strong></span>>>=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249673"></a><span class="bold"><strong>operator</strong></span>>>=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249716"></a><span class="bold"><strong>operator</strong></span>>>=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249758"></a><span class="bold"><strong>operator</strong></span>>>=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249801"></a><span class="bold"><strong>operator</strong></span>*=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249844"></a><span class="bold"><strong>operator</strong></span>*=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249886"></a><span class="bold"><strong>operator</strong></span>*=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1249929"></a><span class="bold"><strong>operator</strong></span>*=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator/=_id1249972"></a><span class="bold"><strong>operator</strong></span>/=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator/=_id1250014"></a><span class="bold"><strong>operator</strong></span>/=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator/=_id1250057"></a><span class="bold"><strong>operator</strong></span>/=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator/=_id1250100"></a><span class="bold"><strong>operator</strong></span>/=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%=_id1250142"></a><span class="bold"><strong>operator</strong></span>%=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%=_id1250185"></a><span class="bold"><strong>operator</strong></span>%=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%=_id1250228"></a><span class="bold"><strong>operator</strong></span>%=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%=_id1250270"></a><span class="bold"><strong>operator</strong></span>%=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator+=_id1250313"></a><span class="bold"><strong>operator</strong></span>+=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator+=_id1250356"></a><span class="bold"><strong>operator</strong></span>+=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator+=_id1250398"></a><span class="bold"><strong>operator</strong></span>+=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator+=_id1250441"></a><span class="bold"><strong>operator</strong></span>+=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-=_id1250484"></a><span class="bold"><strong>operator</strong></span>-=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-=_id1250526"></a><span class="bold"><strong>operator</strong></span>-=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-=_id1250569"></a><span class="bold"><strong>operator</strong></span>-=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator-=_id1250612"></a><span class="bold"><strong>operator</strong></span>-=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&=_id1250654"></a><span class="bold"><strong>operator</strong></span>&=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&=_id1250697"></a><span class="bold"><strong>operator</strong></span>&=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&=_id1250740"></a><span class="bold"><strong>operator</strong></span>&=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator&=_id1250782"></a><span class="bold"><strong>operator</strong></span>&=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1250825"></a><span class="bold"><strong>operator</strong></span>|=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1250868"></a><span class="bold"><strong>operator</strong></span>|=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1250910"></a><span class="bold"><strong>operator</strong></span>|=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator_=_id1250953"></a><span class="bold"><strong>operator</strong></span>|=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%5E=_id1250996"></a><span class="bold"><strong>operator</strong></span>^=(Left & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%5E=_id1251038"></a><span class="bold"><strong>operator</strong></span>^=(Left & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%5E=_id1251081"></a><span class="bold"><strong>operator</strong></span>^=(Left <span class="bold"><strong>const</strong></span> & left, Right & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Left, <span class="bold"><strong>typename</strong></span> Right>
<span class="type"><span class="emphasis"><em>unspecified</em></span></span> <a name="boost.proto.operator%5E=_id1251124"></a><span class="bold"><strong>operator</strong></span>^=(Left <span class="bold"><strong>const</strong></span> & left, Right <span class="bold"><strong>const</strong></span> & right);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> A0, <span class="bold"><strong>typename</strong></span> A1, <span class="bold"><strong>typename</strong></span> A2>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/make_expr.html" title="Struct template make_expr">proto::result_of::make_expr</a><
<a class="link" href="../boost/proto/tag/if_else_.html" title="Struct if_else_">proto::tag::if_else_</a>,
<a class="link" href="../boost/proto/deduce_domain.html" title="Struct deduce_domain">proto::deduce_domain</a>,
A0 <span class="bold"><strong>const</strong></span> &,
A1 <span class="bold"><strong>const</strong></span> &,
A2 <span class="bold"><strong>const</strong></span> &
>::type <span class="bold"><strong>const</strong></span></span>
<a name="boost.proto.if_else"></a>if_else(A0 <span class="bold"><strong>const</strong></span> & a0, A1 <span class="bold"><strong>const</strong></span> & a1, A2 <span class="bold"><strong>const</strong></span> & a2);
<span class="bold"><strong>namespace</strong></span> exops {
<a class="link" href="../BOOST_PROTO_DEFINE_OPERATORS.html" title="Macro BOOST_PROTO_DEFINE_OPERATORS">BOOST_PROTO_DEFINE_OPERATORS</a> <a class="link" href="../boost/proto/exops/_is_extension__default__id1251240.html" title="Global (is_extension, default_domain)">(is_extension, default_domain)</a>;
}
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/proto.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.proto_hpp"></a>Header <<a href="../../../boost/proto/proto.hpp" target="_top">boost/proto/proto.hpp</a>></h3></div></div></div>
<p>Includes all of Proto, except the Boost.Typeof registrations.</p>
</div>
<div class="section" title="Header <boost/proto/proto_fwd.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.proto_fwd_hpp"></a>Header <<a href="../../../boost/proto/proto_fwd.hpp" target="_top">boost/proto/proto_fwd.hpp</a>></h3></div></div></div>
<p>Forward declarations of all of proto's public types and functions. </p>
<pre class="synopsis">
<a class="link" href="../BOOST_PROTO_MAX_ARITY.html" title="Macro BOOST_PROTO_MAX_ARITY">BOOST_PROTO_MAX_ARITY</a>
<a class="link" href="../BOOST_PROTO_MAX_LOGICAL_ARITY.html" title="Macro BOOST_PROTO_MAX_LOGICAL_ARITY">BOOST_PROTO_MAX_LOGICAL_ARITY</a>
<a class="link" href="../BOOST_PROTO_MAX_FUNCTION_CALL_ARITY.html" title="Macro BOOST_PROTO_MAX_FUNCTION_CALL_ARITY">BOOST_PROTO_MAX_FUNCTION_CALL_ARITY</a></pre>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/callable.html" title="Struct callable">callable</a>;
int const <a class="link" href="../boost/proto/N.html" title="Global N">N</a>;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/flatten.html" title="Struct flatten">proto::functional::flatten</a> <a name="boost.proto._flatten"></a>_flatten;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/pop_front.html" title="Struct pop_front">proto::functional::pop_front</a> <a name="boost.proto._pop_front"></a>_pop_front;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/reverse.html" title="Struct reverse">proto::functional::reverse</a> <a name="boost.proto._reverse"></a>_reverse;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/eval.html" title="Struct eval">proto::functional::eval</a> <a name="boost.proto._eval"></a>_eval;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/deep_copy.html" title="Struct deep_copy">proto::functional::deep_copy</a> <a name="boost.proto._deep_copy"></a>_deep_copy;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/terminal.html" title="Struct terminal">proto::tag::terminal</a> > <a name="boost.proto._make_terminal"></a>_make_terminal;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/unary_plus.html" title="Struct unary_plus">proto::tag::unary_plus</a> > <a name="boost.proto._make_unary_plus"></a>_make_unary_plus;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/negate.html" title="Struct negate">proto::tag::negate</a> > <a name="boost.proto._make_negate"></a>_make_negate;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/dereference.html" title="Struct dereference">proto::tag::dereference</a> > <a name="boost.proto._make_dereference"></a>_make_dereference;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/complement.html" title="Struct complement">proto::tag::complement</a> > <a name="boost.proto._make_complement"></a>_make_complement;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/address_of.html" title="Struct address_of">proto::tag::address_of</a> > <a name="boost.proto._make_address_of"></a>_make_address_of;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/logical_not.html" title="Struct logical_not">proto::tag::logical_not</a> > <a name="boost.proto._make_logical_not"></a>_make_logical_not;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/pre_inc.html" title="Struct pre_inc">proto::tag::pre_inc</a> > <a name="boost.proto._make_pre_inc"></a>_make_pre_inc;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/pre_dec.html" title="Struct pre_dec">proto::tag::pre_dec</a> > <a name="boost.proto._make_pre_dec"></a>_make_pre_dec;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/post_inc.html" title="Struct post_inc">proto::tag::post_inc</a> > <a name="boost.proto._make_post_inc"></a>_make_post_inc;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/post_dec.html" title="Struct post_dec">proto::tag::post_dec</a> > <a name="boost.proto._make_post_dec"></a>_make_post_dec;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/shift_left.html" title="Struct shift_left">proto::tag::shift_left</a> > <a name="boost.proto._make_shift_left"></a>_make_shift_left;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/shift_right.html" title="Struct shift_right">proto::tag::shift_right</a> > <a name="boost.proto._make_shift_right"></a>_make_shift_right;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/multiplies.html" title="Struct multiplies">proto::tag::multiplies</a> > <a name="boost.proto._make_multiplies"></a>_make_multiplies;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/divides.html" title="Struct divides">proto::tag::divides</a> > <a name="boost.proto._make_divides"></a>_make_divides;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/modulus.html" title="Struct modulus">proto::tag::modulus</a> > <a name="boost.proto._make_modulus"></a>_make_modulus;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/plus.html" title="Struct plus">proto::tag::plus</a> > <a name="boost.proto._make_plus"></a>_make_plus;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/minus.html" title="Struct minus">proto::tag::minus</a> > <a name="boost.proto._make_minus"></a>_make_minus;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/less.html" title="Struct less">proto::tag::less</a> > <a name="boost.proto._make_less"></a>_make_less;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/greater.html" title="Struct greater">proto::tag::greater</a> > <a name="boost.proto._make_greater"></a>_make_greater;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/less_equal.html" title="Struct less_equal">proto::tag::less_equal</a> > <a name="boost.proto._make_less_equal"></a>_make_less_equal;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/greater_equal.html" title="Struct greater_equal">proto::tag::greater_equal</a> > <a name="boost.proto._make_greater_equal"></a>_make_greater_equal;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/equal_to.html" title="Struct equal_to">proto::tag::equal_to</a> > <a name="boost.proto._make_equal_to"></a>_make_equal_to;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/not_equal_to.html" title="Struct not_equal_to">proto::tag::not_equal_to</a> > <a name="boost.proto._make_not_equal_to"></a>_make_not_equal_to;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/logical_or.html" title="Struct logical_or">proto::tag::logical_or</a> > <a name="boost.proto._make_logical_or"></a>_make_logical_or;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/logical_and.html" title="Struct logical_and">proto::tag::logical_and</a> > <a name="boost.proto._make_logical_and"></a>_make_logical_and;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_and.html" title="Struct bitwise_and">proto::tag::bitwise_and</a> > <a name="boost.proto._make_bitwise_and"></a>_make_bitwise_and;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_or.html" title="Struct bitwise_or">proto::tag::bitwise_or</a> > <a name="boost.proto._make_bitwise_or"></a>_make_bitwise_or;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_xor.html" title="Struct bitwise_xor">proto::tag::bitwise_xor</a> > <a name="boost.proto._make_bitwise_xor"></a>_make_bitwise_xor;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/comma.html" title="Struct comma">proto::tag::comma</a> > <a name="boost.proto._make_comma"></a>_make_comma;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/mem_ptr.html" title="Struct mem_ptr">proto::tag::mem_ptr</a> > <a name="boost.proto._make_mem_ptr"></a>_make_mem_ptr;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/assign.html" title="Struct assign">proto::tag::assign</a> > <a name="boost.proto._make_assign"></a>_make_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/shift_left_assign.html" title="Struct shift_left_assign">proto::tag::shift_left_assign</a> > <a name="boost.proto._make_shift_left_assign"></a>_make_shift_left_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/shift_right_assign.html" title="Struct shift_right_assign">proto::tag::shift_right_assign</a> > <a name="boost.proto._make_shift_right_assign"></a>_make_shift_right_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/multiplies_assign.html" title="Struct multiplies_assign">proto::tag::multiplies_assign</a> > <a name="boost.proto._make_multiplies_assign"></a>_make_multiplies_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/divides_assign.html" title="Struct divides_assign">proto::tag::divides_assign</a> > <a name="boost.proto._make_divides_assign"></a>_make_divides_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/modulus_assign.html" title="Struct modulus_assign">proto::tag::modulus_assign</a> > <a name="boost.proto._make_modulus_assign"></a>_make_modulus_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/plus_assign.html" title="Struct plus_assign">proto::tag::plus_assign</a> > <a name="boost.proto._make_plus_assign"></a>_make_plus_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/minus_assign.html" title="Struct minus_assign">proto::tag::minus_assign</a> > <a name="boost.proto._make_minus_assign"></a>_make_minus_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_and_assign.html" title="Struct bitwise_and_assign">proto::tag::bitwise_and_assign</a> > <a name="boost.proto._make_bitwise_and_assign"></a>_make_bitwise_and_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_or_assign.html" title="Struct bitwise_or_assign">proto::tag::bitwise_or_assign</a> > <a name="boost.proto._make_bitwise_or_assign"></a>_make_bitwise_or_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_xor_assign.html" title="Struct bitwise_xor_assign">proto::tag::bitwise_xor_assign</a> > <a name="boost.proto._make_bitwise_xor_assign"></a>_make_bitwise_xor_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/subscript.html" title="Struct subscript">proto::tag::subscript</a> > <a name="boost.proto._make_subscript"></a>_make_subscript;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/if_else_.html" title="Struct if_else_">proto::tag::if_else_</a> > <a name="boost.proto._make_if_else"></a>_make_if_else;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/function.html" title="Struct function">proto::tag::function</a> > <a name="boost.proto._make_function"></a>_make_function;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/_child_c.html" title="Struct template _child_c">proto::_child_c</a>< <em class="replaceable"><code>N</code></em> > <a name="boost.proto._childN"></a>_childN; <span class="emphasis"><em>// For each <em class="replaceable"><code>N</code></em> in <code class="computeroutput">[0,BOOST_PROTO_MAX_ARITY)</code></em></span>
<span class="bold"><strong>typedef</strong></span> <a class="link" href="reference.html#boost.proto._childN">proto::_child0</a> <a name="boost.proto._child"></a>_child;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="reference.html#boost.proto._childN">proto::_child0</a> <a name="boost.proto._left"></a>_left;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="reference.html#boost.proto._childN">proto::_child1</a> <a name="boost.proto._right"></a>_right;
<span class="bold"><strong>namespace</strong></span> functional {
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/terminal.html" title="Struct terminal">proto::tag::terminal</a> > <a name="boost.proto.functional.make_terminal"></a>make_terminal;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/unary_plus.html" title="Struct unary_plus">proto::tag::unary_plus</a> > <a name="boost.proto.functional.make_unary_plus"></a>make_unary_plus;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/negate.html" title="Struct negate">proto::tag::negate</a> > <a name="boost.proto.functional.make_negate"></a>make_negate;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/dereference.html" title="Struct dereference">proto::tag::dereference</a> > <a name="boost.proto.functional.make_dereference"></a>make_dereference;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/complement.html" title="Struct complement">proto::tag::complement</a> > <a name="boost.proto.functional.make_complement"></a>make_complement;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/address_of.html" title="Struct address_of">proto::tag::address_of</a> > <a name="boost.proto.functional.make_address_of"></a>make_address_of;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/logical_not.html" title="Struct logical_not">proto::tag::logical_not</a> > <a name="boost.proto.functional.make_logical_not"></a>make_logical_not;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/pre_inc.html" title="Struct pre_inc">proto::tag::pre_inc</a> > <a name="boost.proto.functional.make_pre_inc"></a>make_pre_inc;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/pre_dec.html" title="Struct pre_dec">proto::tag::pre_dec</a> > <a name="boost.proto.functional.make_pre_dec"></a>make_pre_dec;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/post_inc.html" title="Struct post_inc">proto::tag::post_inc</a> > <a name="boost.proto.functional.make_post_inc"></a>make_post_inc;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/post_dec.html" title="Struct post_dec">proto::tag::post_dec</a> > <a name="boost.proto.functional.make_post_dec"></a>make_post_dec;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/shift_left.html" title="Struct shift_left">proto::tag::shift_left</a> > <a name="boost.proto.functional.make_shift_left"></a>make_shift_left;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/shift_right.html" title="Struct shift_right">proto::tag::shift_right</a> > <a name="boost.proto.functional.make_shift_right"></a>make_shift_right;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/multiplies.html" title="Struct multiplies">proto::tag::multiplies</a> > <a name="boost.proto.functional.make_multiplies"></a>make_multiplies;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/divides.html" title="Struct divides">proto::tag::divides</a> > <a name="boost.proto.functional.make_divides"></a>make_divides;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/modulus.html" title="Struct modulus">proto::tag::modulus</a> > <a name="boost.proto.functional.make_modulus"></a>make_modulus;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/plus.html" title="Struct plus">proto::tag::plus</a> > <a name="boost.proto.functional.make_plus"></a>make_plus;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/minus.html" title="Struct minus">proto::tag::minus</a> > <a name="boost.proto.functional.make_minus"></a>make_minus;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/less.html" title="Struct less">proto::tag::less</a> > <a name="boost.proto.functional.make_less"></a>make_less;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/greater.html" title="Struct greater">proto::tag::greater</a> > <a name="boost.proto.functional.make_greater"></a>make_greater;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/less_equal.html" title="Struct less_equal">proto::tag::less_equal</a> > <a name="boost.proto.functional.make_less_equal"></a>make_less_equal;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/greater_equal.html" title="Struct greater_equal">proto::tag::greater_equal</a> > <a name="boost.proto.functional.make_greater_equal"></a>make_greater_equal;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/equal_to.html" title="Struct equal_to">proto::tag::equal_to</a> > <a name="boost.proto.functional.make_equal_to"></a>make_equal_to;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/not_equal_to.html" title="Struct not_equal_to">proto::tag::not_equal_to</a> > <a name="boost.proto.functional.make_not_equal_to"></a>make_not_equal_to;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/logical_or.html" title="Struct logical_or">proto::tag::logical_or</a> > <a name="boost.proto.functional.make_logical_or"></a>make_logical_or;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/logical_and.html" title="Struct logical_and">proto::tag::logical_and</a> > <a name="boost.proto.functional.make_logical_and"></a>make_logical_and;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_and.html" title="Struct bitwise_and">proto::tag::bitwise_and</a> > <a name="boost.proto.functional.make_bitwise_and"></a>make_bitwise_and;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_or.html" title="Struct bitwise_or">proto::tag::bitwise_or</a> > <a name="boost.proto.functional.make_bitwise_or"></a>make_bitwise_or;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_xor.html" title="Struct bitwise_xor">proto::tag::bitwise_xor</a> > <a name="boost.proto.functional.make_bitwise_xor"></a>make_bitwise_xor;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/comma.html" title="Struct comma">proto::tag::comma</a> > <a name="boost.proto.functional.make_comma"></a>make_comma;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/mem_ptr.html" title="Struct mem_ptr">proto::tag::mem_ptr</a> > <a name="boost.proto.functional.make_mem_ptr"></a>make_mem_ptr;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/assign.html" title="Struct assign">proto::tag::assign</a> > <a name="boost.proto.functional.make_assign"></a>make_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/shift_left_assign.html" title="Struct shift_left_assign">proto::tag::shift_left_assign</a> > <a name="boost.proto.functional.make_shift_left_assign"></a>make_shift_left_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/shift_right_assign.html" title="Struct shift_right_assign">proto::tag::shift_right_assign</a> > <a name="boost.proto.functional.make_shift_right_assign"></a>make_shift_right_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/multiplies_assign.html" title="Struct multiplies_assign">proto::tag::multiplies_assign</a> > <a name="boost.proto.functional.make_multiplies_assign"></a>make_multiplies_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/divides_assign.html" title="Struct divides_assign">proto::tag::divides_assign</a> > <a name="boost.proto.functional.make_divides_assign"></a>make_divides_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/modulus_assign.html" title="Struct modulus_assign">proto::tag::modulus_assign</a> > <a name="boost.proto.functional.make_modulus_assign"></a>make_modulus_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/plus_assign.html" title="Struct plus_assign">proto::tag::plus_assign</a> > <a name="boost.proto.functional.make_plus_assign"></a>make_plus_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/minus_assign.html" title="Struct minus_assign">proto::tag::minus_assign</a> > <a name="boost.proto.functional.make_minus_assign"></a>make_minus_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_and_assign.html" title="Struct bitwise_and_assign">proto::tag::bitwise_and_assign</a> > <a name="boost.proto.functional.make_bitwise_and_assign"></a>make_bitwise_and_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_or_assign.html" title="Struct bitwise_or_assign">proto::tag::bitwise_or_assign</a> > <a name="boost.proto.functional.make_bitwise_or_assign"></a>make_bitwise_or_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/bitwise_xor_assign.html" title="Struct bitwise_xor_assign">proto::tag::bitwise_xor_assign</a> > <a name="boost.proto.functional.make_bitwise_xor_assign"></a>make_bitwise_xor_assign;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/subscript.html" title="Struct subscript">proto::tag::subscript</a> > <a name="boost.proto.functional.make_subscript"></a>make_subscript;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/if_else_.html" title="Struct if_else_">proto::tag::if_else_</a> > <a name="boost.proto.functional.make_if_else"></a>make_if_else;
<span class="bold"><strong>typedef</strong></span> <a class="link" href="../boost/proto/functional/make_expr.html" title="Struct template make_expr">proto::functional::make_expr</a>< <a class="link" href="../boost/proto/tag/function.html" title="Struct function">proto::tag::function</a> > <a name="boost.proto.functional.make_function"></a>make_function;
}
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/proto_typeof.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.proto_typeof_hpp"></a>Header <<a href="../../../boost/proto/proto_typeof.hpp" target="_top">boost/proto/proto_typeof.hpp</a>></h3></div></div></div>
<p>Boost.Typeof registrations for Proto's types, and definition of the
<code class="computeroutput"><a class="link" href="../BOOST_PROTO_AUTO.html" title="Macro BOOST_PROTO_AUTO">BOOST_PROTO_AUTO</a>()</code> macro.</p>
<pre class="synopsis">
<a class="link" href="../BOOST_PROTO_AUTO.html" title="Macro BOOST_PROTO_AUTO">BOOST_PROTO_AUTO</a>(Var, Expr)</pre>
</div>
<div class="section" title="Header <boost/proto/repeat.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.repeat_hpp"></a>Header <<a href="../../../boost/proto/repeat.hpp" target="_top">boost/proto/repeat.hpp</a>></h3></div></div></div>
<p>
Contains macros to ease the generation of repetitious code constructs.
</p>
<pre class="synopsis">
<a class="link" href="../BOOST_PROTO_REPEAT.html" title="Macro BOOST_PROTO_REPEAT">BOOST_PROTO_REPEAT</a>(MACRO)
<a class="link" href="../BOOST_PROTO_REPEAT_FROM_TO.html" title="Macro BOOST_PROTO_REPEAT_FROM_TO">BOOST_PROTO_REPEAT_FROM_TO</a>(FROM, TO, MACRO)
<a class="link" href="../BOOST_PROTO_REPEAT_EX.html" title="Macro BOOST_PROTO_REPEAT_EX">BOOST_PROTO_REPEAT_EX</a>(MACRO, typename_A, A, A_a, a)
<a class="link" href="../BOOST_PROTO_REPEAT_FROM_TO_EX.html" title="Macro BOOST_PROTO_REPEAT_FROM_TO_EX">BOOST_PROTO_REPEAT_FROM_TO_EX</a>(FROM, TO, MACRO, typename_A, A, A_a, a)
<a class="link" href="../BOOST_PROTO_LOCAL_ITERATE.html" title="Macro BOOST_PROTO_LOCAL_ITERATE">BOOST_PROTO_LOCAL_ITERATE</a>()
<a class="link" href="../BOOST_PROTO_typename_A.html" title="Macro BOOST_PROTO_typename_A">BOOST_PROTO_typename_A</a>(N)
<a class="link" href="../BOOST_PROTO_A_const_ref.html" title="Macro BOOST_PROTO_A_const_ref">BOOST_PROTO_A_const_ref</a>(N)
<a class="link" href="../BOOST_PROTO_A_ref.html" title="Macro BOOST_PROTO_A_ref">BOOST_PROTO_A_ref</a>(N)
<a class="link" href="../BOOST_PROTO_A_id1254513.html" title="Macro BOOST_PROTO_A">BOOST_PROTO_A</a>(N)
<a class="link" href="../BOOST_PROTO_A_const.html" title="Macro BOOST_PROTO_A_const">BOOST_PROTO_A_const</a>(N)
<a class="link" href="../BOOST_PROTO_A_const_ref_a.html" title="Macro BOOST_PROTO_A_const_ref_a">BOOST_PROTO_A_const_ref_a</a>(N)
<a class="link" href="../BOOST_PROTO_A_ref_a.html" title="Macro BOOST_PROTO_A_ref_a">BOOST_PROTO_A_ref_a</a>(N)
<a class="link" href="../BOOST_PROTO_ref_a.html" title="Macro BOOST_PROTO_ref_a">BOOST_PROTO_ref_a</a>(N)
<a class="link" href="../BOOST_PROTO_a_id1254972.html" title="Macro BOOST_PROTO_a">BOOST_PROTO_a</a>(N)</pre>
</div>
<div class="section" title="Header <boost/proto/tags.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.tags_hpp"></a>Header <<a href="../../../boost/proto/tags.hpp" target="_top">boost/proto/tags.hpp</a>></h3></div></div></div>
<p>Contains the tags for all the overloadable operators in C++ </p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>namespace</strong></span> tag {
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/terminal.html" title="Struct terminal">terminal</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/unary_plus.html" title="Struct unary_plus">unary_plus</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/negate.html" title="Struct negate">negate</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/dereference.html" title="Struct dereference">dereference</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/complement.html" title="Struct complement">complement</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/address_of.html" title="Struct address_of">address_of</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/logical_not.html" title="Struct logical_not">logical_not</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/pre_inc.html" title="Struct pre_inc">pre_inc</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/pre_dec.html" title="Struct pre_dec">pre_dec</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/post_inc.html" title="Struct post_inc">post_inc</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/post_dec.html" title="Struct post_dec">post_dec</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/shift_left.html" title="Struct shift_left">shift_left</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/shift_right.html" title="Struct shift_right">shift_right</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/multiplies.html" title="Struct multiplies">multiplies</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/divides.html" title="Struct divides">divides</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/modulus.html" title="Struct modulus">modulus</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/plus.html" title="Struct plus">plus</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/minus.html" title="Struct minus">minus</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/less.html" title="Struct less">less</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/greater.html" title="Struct greater">greater</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/less_equal.html" title="Struct less_equal">less_equal</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/greater_equal.html" title="Struct greater_equal">greater_equal</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/equal_to.html" title="Struct equal_to">equal_to</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/not_equal_to.html" title="Struct not_equal_to">not_equal_to</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/logical_or.html" title="Struct logical_or">logical_or</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/logical_and.html" title="Struct logical_and">logical_and</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/bitwise_and.html" title="Struct bitwise_and">bitwise_and</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/bitwise_or.html" title="Struct bitwise_or">bitwise_or</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/bitwise_xor.html" title="Struct bitwise_xor">bitwise_xor</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/comma.html" title="Struct comma">comma</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/mem_ptr.html" title="Struct mem_ptr">mem_ptr</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/assign.html" title="Struct assign">assign</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/shift_left_assign.html" title="Struct shift_left_assign">shift_left_assign</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/shift_right_assign.html" title="Struct shift_right_assign">shift_right_assign</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/multiplies_assign.html" title="Struct multiplies_assign">multiplies_assign</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/divides_assign.html" title="Struct divides_assign">divides_assign</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/modulus_assign.html" title="Struct modulus_assign">modulus_assign</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/plus_assign.html" title="Struct plus_assign">plus_assign</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/minus_assign.html" title="Struct minus_assign">minus_assign</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/bitwise_and_assign.html" title="Struct bitwise_and_assign">bitwise_and_assign</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/bitwise_or_assign.html" title="Struct bitwise_or_assign">bitwise_or_assign</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/bitwise_xor_assign.html" title="Struct bitwise_xor_assign">bitwise_xor_assign</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/subscript.html" title="Struct subscript">subscript</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/if_else_.html" title="Struct if_else_">if_else_</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag/function.html" title="Struct function">function</a>;
}
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/traits.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.traits_hpp"></a>Header <<a href="../../../boost/proto/traits.hpp" target="_top">boost/proto/traits.hpp</a>></h3></div></div></div>
<p>Contains definitions for child<>, child_c<>, left<>, right<>, tag_of<>, and the helper functions child(), child_c(), value(), left() and right(). </p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/is_callable.html" title="Struct template is_callable">is_callable</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/is_aggregate.html" title="Struct template is_aggregate">is_aggregate</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/terminal.html" title="Struct template terminal">terminal</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U, <span class="bold"><strong>typename</strong></span> V> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/if_else_.html" title="Struct template if_else_">if_else_</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/unary_plus.html" title="Struct template unary_plus">unary_plus</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/negate.html" title="Struct template negate">negate</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/dereference.html" title="Struct template dereference">dereference</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/complement.html" title="Struct template complement">complement</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/address_of.html" title="Struct template address_of">address_of</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/logical_not.html" title="Struct template logical_not">logical_not</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/pre_inc.html" title="Struct template pre_inc">pre_inc</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/pre_dec.html" title="Struct template pre_dec">pre_dec</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/post_inc.html" title="Struct template post_inc">post_inc</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/post_dec.html" title="Struct template post_dec">post_dec</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/shift_left.html" title="Struct template shift_left">shift_left</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/shift_right.html" title="Struct template shift_right">shift_right</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/multiplies.html" title="Struct template multiplies">multiplies</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/divides.html" title="Struct template divides">divides</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/modulus.html" title="Struct template modulus">modulus</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/plus.html" title="Struct template plus">plus</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/minus.html" title="Struct template minus">minus</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/less.html" title="Struct template less">less</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/greater.html" title="Struct template greater">greater</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/less_equal.html" title="Struct template less_equal">less_equal</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/greater_equal.html" title="Struct template greater_equal">greater_equal</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/equal_to.html" title="Struct template equal_to">equal_to</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/not_equal_to.html" title="Struct template not_equal_to">not_equal_to</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/logical_or.html" title="Struct template logical_or">logical_or</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/logical_and.html" title="Struct template logical_and">logical_and</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/bitwise_and.html" title="Struct template bitwise_and">bitwise_and</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/bitwise_or.html" title="Struct template bitwise_or">bitwise_or</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/bitwise_xor.html" title="Struct template bitwise_xor">bitwise_xor</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/comma.html" title="Struct template comma">comma</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/mem_ptr.html" title="Struct template mem_ptr">mem_ptr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/assign.html" title="Struct template assign">assign</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/shift_left_assign.html" title="Struct template shift_left_assign">shift_left_assign</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/shift_right_assign.html" title="Struct template shift_right_assign">shift_right_assign</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/multiplies_assign.html" title="Struct template multiplies_assign">multiplies_assign</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/divides_assign.html" title="Struct template divides_assign">divides_assign</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/modulus_assign.html" title="Struct template modulus_assign">modulus_assign</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/plus_assign.html" title="Struct template plus_assign">plus_assign</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/minus_assign.html" title="Struct template minus_assign">minus_assign</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/bitwise_and_assign.html" title="Struct template bitwise_and_assign">bitwise_and_assign</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/bitwise_or_assign.html" title="Struct template bitwise_or_assign">bitwise_or_assign</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/bitwise_xor_assign.html" title="Struct template bitwise_xor_assign">bitwise_xor_assign</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/subscript.html" title="Struct template subscript">subscript</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span>... A> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/function.html" title="Struct template function">function</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/nullary_expr.html" title="Struct template nullary_expr">nullary_expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/unary_expr.html" title="Struct template unary_expr">unary_expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> U> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/binary_expr.html" title="Struct template binary_expr">binary_expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Tag, <span class="bold"><strong>typename</strong></span>... A> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/nary_expr.html" title="Struct template nary_expr">nary_expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/is_expr.html" title="Struct template is_expr">is_expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/tag_of.html" title="Struct template tag_of">tag_of</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/arity_of.html" title="Struct template arity_of">arity_of</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/as_expr.html" title="Struct template as_expr">proto::result_of::as_expr</a>< T >::type</span> <a class="link" href="../boost/proto/as_expr_id1264483.html" title="Function as_expr">as_expr</a>(T &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/as_expr.html" title="Struct template as_expr">proto::result_of::as_expr</a>< T <span class="bold"><strong>const</strong></span> >::type</span> <a class="link" href="../boost/proto/as_expr_id1264483.html" title="Function as_expr">as_expr</a>(T <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Domain, <span class="bold"><strong>typename</strong></span> T>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/as_expr.html" title="Struct template as_expr">proto::result_of::as_expr</a>< T, Domain >::type</span> <a class="link" href="../boost/proto/as_expr_id1264483.html" title="Function as_expr">as_expr</a>(T &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Domain, <span class="bold"><strong>typename</strong></span> T>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/as_expr.html" title="Struct template as_expr">proto::result_of::as_expr</a>< T <span class="bold"><strong>const</strong></span>, Domain >::type</span>
<a class="link" href="../boost/proto/as_expr_id1264483.html" title="Function as_expr">as_expr</a>(T <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/as_child.html" title="Struct template as_child">proto::result_of::as_child</a>< T >::type</span> <a class="link" href="../boost/proto/as_child_id1264710.html" title="Function as_child">as_child</a>(T &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/as_child.html" title="Struct template as_child">proto::result_of::as_child</a>< T <span class="bold"><strong>const</strong></span> >::type</span> <a class="link" href="../boost/proto/as_child_id1264710.html" title="Function as_child">as_child</a>(T <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Domain, <span class="bold"><strong>typename</strong></span> T>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/as_child.html" title="Struct template as_child">proto::result_of::as_child</a>< T, Domain >::type</span> <a class="link" href="../boost/proto/as_child_id1264710.html" title="Function as_child">as_child</a>(T &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Domain, <span class="bold"><strong>typename</strong></span> T>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/as_child.html" title="Struct template as_child">proto::result_of::as_child</a>< T <span class="bold"><strong>const</strong></span>, Domain >::type</span>
<a class="link" href="../boost/proto/as_child_id1264710.html" title="Function as_child">as_child</a>(T <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> N, <span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/child.html" title="Struct template child">proto::result_of::child</a>< Expr &, N >::type</span> <a class="link" href="../boost/proto/child_id1264914.html" title="Function child">child</a>(Expr &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> N, <span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/child.html" title="Struct template child">proto::result_of::child</a>< Expr <span class="bold"><strong>const</strong></span> &, N >::type</span>
<a class="link" href="../boost/proto/child_id1264914.html" title="Function child">child</a>(Expr <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/child.html" title="Struct template child">proto::result_of::child</a>< Expr & >::type</span> <a class="link" href="../boost/proto/child_id1264914.html" title="Function child">child</a>(Expr &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/child.html" title="Struct template child">proto::result_of::child</a>< Expr <span class="bold"><strong>const</strong></span> & >::type</span>
<a class="link" href="../boost/proto/child_id1264914.html" title="Function child">child</a>(Expr <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>long</strong></span> N, <span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/child_c.html" title="Struct template child_c">proto::result_of::child_c</a>< Expr &, N >::type</span> <a class="link" href="../boost/proto/child_c_id1265156.html" title="Function child_c">child_c</a>(Expr &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>long</strong></span> N, <span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/child_c.html" title="Struct template child_c">proto::result_of::child_c</a>< Expr <span class="bold"><strong>const</strong></span> &, N >::type</span>
<a class="link" href="../boost/proto/child_c_id1265156.html" title="Function child_c">child_c</a>(Expr <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/value.html" title="Struct template value">proto::result_of::value</a>< Expr & >::type</span> <a class="link" href="../boost/proto/value_id1265317.html" title="Function value">value</a>(Expr &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/value.html" title="Struct template value">proto::result_of::value</a>< Expr <span class="bold"><strong>const</strong></span> & >::type</span>
<a class="link" href="../boost/proto/value_id1265317.html" title="Function value">value</a>(Expr <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/left.html" title="Struct template left">proto::result_of::left</a>< Expr & >::type</span> <a class="link" href="../boost/proto/left_id1265424.html" title="Function left">left</a>(Expr &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/left.html" title="Struct template left">proto::result_of::left</a>< Expr <span class="bold"><strong>const</strong></span> & >::type</span> <a class="link" href="../boost/proto/left_id1265424.html" title="Function left">left</a>(Expr <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/right.html" title="Struct template right">proto::result_of::right</a>< Expr & >::type</span> <a class="link" href="../boost/proto/right_id1265548.html" title="Function right">right</a>(Expr &);
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr>
<span class="type"><span class="bold"><strong>typename</strong></span> <a class="link" href="../boost/proto/result_of/right.html" title="Struct template right">proto::result_of::right</a>< Expr <span class="bold"><strong>const</strong></span> & >::type</span>
<a class="link" href="../boost/proto/right_id1265548.html" title="Function right">right</a>(Expr <span class="bold"><strong>const</strong></span> &);
<span class="bold"><strong>namespace</strong></span> functional {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Domain = <a class="link" href="../boost/proto/default_domain.html" title="Struct default_domain">proto::default_domain</a>> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/as_expr.html" title="Struct template as_expr">as_expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Domain = <a class="link" href="../boost/proto/default_domain.html" title="Struct default_domain">proto::default_domain</a>> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/as_child.html" title="Struct template as_child">as_child</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>long</strong></span> N> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/child_c.html" title="Struct template child_c">child_c</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> N = mpl::long_<0> > <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/child.html" title="Struct template child">child</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/value.html" title="Struct value">value</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/left.html" title="Struct left">left</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/functional/right.html" title="Struct right">right</a>;
}
<span class="bold"><strong>namespace</strong></span> result_of {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> Domain = <a class="link" href="../boost/proto/default_domain.html" title="Struct default_domain">proto::default_domain</a>>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/as_expr.html" title="Struct template as_expr">as_expr</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T, <span class="bold"><strong>typename</strong></span> Domain = <a class="link" href="../boost/proto/default_domain.html" title="Struct default_domain">proto::default_domain</a>>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/as_child.html" title="Struct template as_child">as_child</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr, <span class="bold"><strong>typename</strong></span> N = mpl::long_<0> > <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/child.html" title="Struct template child">child</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/value.html" title="Struct template value">value</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/left.html" title="Struct template left">left</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/right.html" title="Struct template right">right</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr, <span class="bold"><strong>long</strong></span> N> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/result_of/child_c.html" title="Struct template child_c">child_c</a>;
}
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/transform/arg.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.transform.arg_hpp"></a>Header <<a href="../../../boost/proto/transform/arg.hpp" target="_top">boost/proto/transform/arg.hpp</a>></h3></div></div></div>
<p>Contains definition of the childN transforms and friends.</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/_expr.html" title="Struct _expr">_expr</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/_state.html" title="Struct _state">_state</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/_data.html" title="Struct _data">_data</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>int</strong></span> N> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/_child_c.html" title="Struct template _child_c">_child_c</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/_value.html" title="Struct _value">_value</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/_byref.html" title="Struct _byref">_byref</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/_byval.html" title="Struct _byval">_byval</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/transform/call.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.transform.call_hpp"></a>Header <<a href="../../../boost/proto/transform/call.hpp" target="_top">boost/proto/transform/call.hpp</a>></h3></div></div></div>
<p>Contains definition of the call<> transform. </p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/call.html" title="Struct template call">call</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/transform/default.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.transform.default_hpp"></a>Header <<a href="../../../boost/proto/transform/default.hpp" target="_top">boost/proto/transform/default.hpp</a>></h3></div></div></div>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Grammar = <em class="replaceable"><code>unspecified</code></em>> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/_default.html" title="Struct template _default">_default</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/transform/fold.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.transform.fold_hpp"></a>Header <<a href="../../../boost/proto/transform/fold.hpp" target="_top">boost/proto/transform/fold.hpp</a>></h3></div></div></div>
<p>Contains definition of the
<code class="computeroutput">
<a class="link" href="../boost/proto/fold.html" title="Struct template fold">proto::fold<></a>
</code> and
<code class="computeroutput">
<a class="link" href="../boost/proto/reverse_fold.html" title="Struct template reverse_fold">proto::reverse_fold<></a>
</code>
transforms.</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Sequence, <span class="bold"><strong>typename</strong></span> State0, <span class="bold"><strong>typename</strong></span> Fun> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/fold.html" title="Struct template fold">fold</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Sequence, <span class="bold"><strong>typename</strong></span> State0, <span class="bold"><strong>typename</strong></span> Fun>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/reverse_fold.html" title="Struct template reverse_fold">reverse_fold</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/transform/fold_tree.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.transform.fold_tree_hpp"></a>Header <<a href="../../../boost/proto/transform/fold_tree.hpp" target="_top">boost/proto/transform/fold_tree.hpp</a>></h3></div></div></div>
<p>
Contains definition of the
<code class="computeroutput">
<a class="link" href="../boost/proto/fold_tree.html" title="Struct template fold_tree">proto::fold_tree<></a>
</code> and
<code class="computeroutput">
<a class="link" href="../boost/proto/reverse_fold_tree.html" title="Struct template reverse_fold_tree">proto::reverse_fold_tree<></a>
</code>
transforms.
</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Sequence, <span class="bold"><strong>typename</strong></span> State0, <span class="bold"><strong>typename</strong></span> Fun> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/fold_tree.html" title="Struct template fold_tree">fold_tree</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Sequence, <span class="bold"><strong>typename</strong></span> State0, <span class="bold"><strong>typename</strong></span> Fun>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/reverse_fold_tree.html" title="Struct template reverse_fold_tree">reverse_fold_tree</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/transform/impl.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.transform.impl_hpp"></a>Header <<a href="../../../boost/proto/transform/impl.hpp" target="_top">boost/proto/transform/impl.hpp</a>></h3></div></div></div>
<p>Contains definition of transform<> and transform_impl<> helpers. </p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> <a class="link" href="../PrimitiveTransform.html" title="Concept PrimitiveTransform">PrimitiveTransform</a>> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/transform.html" title="Struct template transform">transform</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr, <span class="bold"><strong>typename</strong></span> State, <span class="bold"><strong>typename</strong></span> Data>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/transform_impl.html" title="Struct template transform_impl">transform_impl</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/transform/lazy.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.transform.lazy_hpp"></a>Header <<a href="../../../boost/proto/transform/lazy.hpp" target="_top">boost/proto/transform/lazy.hpp</a>></h3></div></div></div>
<p>
Contains definition of the
<code class="computeroutput">
<a class="link" href="../boost/proto/lazy.html" title="Struct template lazy">proto::lazy<></a>
</code> transform.
</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/lazy.html" title="Struct template lazy">lazy</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/transform/make.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.transform.make_hpp"></a>Header <<a href="../../../boost/proto/transform/make.hpp" target="_top">boost/proto/transform/make.hpp</a>></h3></div></div></div>
<p>
Contains definition of the
<code class="computeroutput">
<a class="link" href="../boost/proto/make.html" title="Struct template make">proto::make<></a>
</code>
and
<code class="computeroutput">
<a class="link" href="../boost/proto/protect.html" title="Struct template protect">proto::protect<></a>
</code>
transforms.
</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/noinvoke.html" title="Struct template noinvoke">noinvoke</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> <a class="link" href="../PrimitiveTransform.html" title="Concept PrimitiveTransform">PrimitiveTransform</a>> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/protect.html" title="Struct template protect">protect</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/make.html" title="Struct template make">make</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/transform/pass_through.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.transform.pass_through_hpp"></a>Header <<a href="../../../boost/proto/transform/pass_through.hpp" target="_top">boost/proto/transform/pass_through.hpp</a>></h3></div></div></div>
<p>Definition of the
<code class="computeroutput"><a class="link" href="../boost/proto/pass_through.html" title="Struct template pass_through">proto::pass_through<></a></code>
transform, which is the default transform of all of the expression generator metafunctions such as
<code class="computeroutput"><a class="link" href="../boost/proto/unary_plus.html" title="Struct template unary_plus">proto::unary_plus<></a></code>,
<code class="computeroutput"><a class="link" href="../boost/proto/plus.html" title="Struct template plus">proto::plus<></a></code> and
<code class="computeroutput"><a class="link" href="../boost/proto/nary_expr.html" title="Struct template nary_expr">proto::nary_expr<></a></code>.</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Grammar> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/pass_through.html" title="Struct template pass_through">pass_through</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/transform/when.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.transform.when_hpp"></a>Header <<a href="../../../boost/proto/transform/when.hpp" target="_top">boost/proto/transform/when.hpp</a>></h3></div></div></div>
<p>
Definition of the
<code class="computeroutput">
<a class="link" href="../boost/proto/when.html" title="Struct template when">proto::when<></a>
</code> and
<code class="computeroutput">
<a class="link" href="../boost/proto/otherwise.html" title="Struct template otherwise">proto::otherwise<></a>
</code> transforms.
</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Grammar, <span class="bold"><strong>typename</strong></span> <a class="link" href="../PrimitiveTransform.html" title="Concept PrimitiveTransform">PrimitiveTransform</a> = Grammar>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/when.html" title="Struct template when">when</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Grammar, <span class="bold"><strong>typename</strong></span> Fun> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/when_Grammar__Fun_id1272146.html" title="Struct template when<Grammar, Fun *>">when</a><Grammar, Fun *>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Grammar, <span class="bold"><strong>typename</strong></span> R, <span class="bold"><strong>typename</strong></span>... A>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/when_Grammar__R_A___id1272228.html" title="Struct template when<Grammar, R(A...)>">when</a><Grammar, R(A...)>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Fun> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/otherwise.html" title="Struct template otherwise">otherwise</a>;
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/context/callable.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.context.callable_hpp"></a>Header <<a href="../../../boost/proto/context/callable.hpp" target="_top">boost/proto/context/callable.hpp</a>></h3></div></div></div>
<p>Definintion of <code class="computeroutput"><a class="link" href="../boost/proto/context/callable_context.html" title="Struct template callable_context">proto::context::callable_context<></a></code>,
an evaluation context for <code class="computeroutput"><a class="link" href="../boost/proto/eval_id1236049.html" title="Function eval">proto::eval()</a></code>
that fans out each node and calls the derived context type with the expressions constituents. If the derived context
doesn't have an overload that handles this node, fall back to some other context. </p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>namespace</strong></span> context {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr, <span class="bold"><strong>typename</strong></span> Context> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/context/callable_eval.html" title="Struct template callable_eval">callable_eval</a>;
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Context,
<span class="bold"><strong>typename</strong></span> DefaultCtx = <a class="link" href="../boost/proto/context/default_context.html" title="Struct default_context">proto::context::default_context</a>>
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/context/callable_context.html" title="Struct template callable_context">callable_context</a>;
}
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/context/default.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.context.default_hpp"></a>Header <<a href="../../../boost/proto/context/default.hpp" target="_top">boost/proto/context/default.hpp</a>></h3></div></div></div>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>namespace</strong></span> context {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr, <span class="bold"><strong>typename</strong></span> Context> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/context/default_eval.html" title="Struct template default_eval">default_eval</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/context/default_context.html" title="Struct default_context">default_context</a>;
}
}
}</pre>
</div>
<div class="section" title="Header <boost/proto/context/null.hpp>">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.proto.context.null_hpp"></a>Header <<a href="../../../boost/proto/context/null.hpp" target="_top">boost/proto/context/null.hpp</a>></h3></div></div></div>
<p>
Definintion of
<code class="computeroutput"><a class="link" href="../boost/proto/context/null_context.html" title="Struct null_context">proto::context::null_context<></a></code>,
an evaluation context for
<code class="computeroutput"><a class="link" href="../boost/proto/eval_id1236049.html" title="Function eval">proto::eval()</a></code>
that simply evaluates each child expression, doesn't combine the results at all, and returns void.
</p>
<pre class="synopsis"><span class="bold"><strong>namespace</strong></span> boost {
<span class="bold"><strong>namespace</strong></span> proto {
<span class="bold"><strong>namespace</strong></span> context {
<span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Expr, <span class="bold"><strong>typename</strong></span> Context> <span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/context/null_eval.html" title="Struct template null_eval">null_eval</a>;
<span class="bold"><strong>struct</strong></span> <a class="link" href="../boost/proto/context/null_context.html" title="Struct null_context">null_context</a>;
}
}
}</pre>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2008 Eric Niebler<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="users_guide.html"><img src="../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../proto.html"><img src="../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="../boost/proto/term.html"><img src="../../../doc/html/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|