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
|
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2012 Eric Niebler
Distributed under the Boost
Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-->
<header name="boost/proto/extends.hpp">
<para>Macros and a base class for defining end-user expression types </para>
<namespace name="boost">
<namespace name="proto">
<!-- proto::is_proto_expr -->
<struct name="is_proto_expr">
<purpose>Empty type to be used as a dummy template parameter of POD expression wrappers. It allows
argument-dependent lookup to find Proto's operator overloads.</purpose>
<description>
<para>
<computeroutput>proto::is_proto_expr</computeroutput> allows argument-dependent lookup to find Proto's operator overloads. For example:
</para>
<para>
<programlisting> template<typename T, typename Dummy = <classname>proto::is_proto_expr</classname>>
struct my_terminal
{
<macroname>BOOST_PROTO_BASIC_EXTENDS</macroname>(
typename <classname>proto::terminal</classname><T>::type
, my_terminal<T>
, <classname>proto::default_domain</classname>
)
};
// ...
my_terminal<int> _1, _2;
_1 + _2; // OK, uses proto::operator+</programlisting>
</para>
<para>
Without the second <computeroutput>Dummy</computeroutput> template parameter, Proto's operator overloads
would not be considered by name lookup.
</para>
</description>
</struct>
<!-- proto::extends -->
<struct name="extends">
<template>
<template-type-parameter name="Expr"/>
<template-type-parameter name="Derived"/>
<template-type-parameter name="Domain">
<default><classname>proto::default_domain</classname></default>
</template-type-parameter>
</template>
<purpose>For adding behaviors to a Proto expression template.</purpose>
<description>
<para>
Use <computeroutput>proto::extends<></computeroutput> to give expressions in your
domain custom data members and member functions.
</para>
<para>
Conceptually, using <computeroutput>proto::extends<></computeroutput> is akin
to inheriting from <computeroutput><classname>proto::expr</classname><></computeroutput>
and adding your own members. Using <computeroutput>proto::extends<></computeroutput> is
generally preferrable to straight inheritance because the members that would be inherited from
<computeroutput><classname>proto::expr</classname><></computeroutput> would
be wrong; they would incorrectly slice off your additional members when building
larger expressions from smaller ones. <computeroutput>proto::extends<></computeroutput>
automatically gives your expression types the appropriate operator overloads that
preserve your domain-specific members when composing expression trees.
</para>
<para>
Expression extensions are typically defined as follows:
</para>
<para>
<programlisting>template< typename Expr >
struct my_expr
: proto::extends<
Expr // The expression type we're extending
, my_expr< Expr > // The type we're defining
, my_domain // The domain associated with this expression extension
>
{
// An expression extension is constructed from the expression
// it is extending.
my_expr( Expr const & e = Expr() )
: my_expr::proto_extends( e )
{}
// Unhide proto::extends::operator=
// (This is only necessary if a lazy assignment operator
// makes sense for your domain-specific language.)
BOOST_PROTO_EXTENDS_USING_ASSIGN(my_expr)
/*
... domain-specific members go here ...
*/
};</programlisting>
</para>
<para>
See also:
<itemizedlist>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_USING_ASSIGN</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_USING_ASSIGN_NON_DEPENDENT</macroname>()</computeroutput>
</listitem>
</itemizedlist>
</para>
</description>
<struct name="result">
<template>
<template-type-parameter name="Signature"/>
</template>
<typedef name="type">
<type><replaceable>unspecified</replaceable></type>
</typedef>
<description>
<para>So that <computeroutput>boost::result_of<></computeroutput>
can compute the return type of <computeroutput>proto::extends::operator()</computeroutput>.
</para>
</description>
</struct>
<typedef name="proto_base_expr">
<type>typename Expr::proto_base_expr</type>
</typedef>
<typedef name="proto_domain">
<type>Domain</type>
</typedef>
<typedef name="proto_derived_expr">
<type>Derived</type>
</typedef>
<typedef name="proto_extends">
<type>extends</type>
</typedef>
<typedef name="proto_tag">
<type>typename proto_base_expr::proto_tag</type>
</typedef>
<typedef name="proto_args">
<type>typename proto_base_expr::proto_args</type>
</typedef>
<typedef name="proto_arity">
<type>typename proto_base_expr::proto_arity</type>
</typedef>
<typedef name="proto_grammar">
<type>typename proto_base_expr::proto_grammar</type>
</typedef>
<typedef name="proto_childN">
<purpose>For each <replaceable>N</replaceable> in <replaceable>[0,max(1,proto_arity_c))</replaceable></purpose>
<type>typename proto_base_expr::proto_child<replaceable>N</replaceable></type>
</typedef>
<!-- constructors -->
<constructor/>
<constructor>
<parameter name="that">
<paramtype><classname>extends</classname> const &</paramtype>
</parameter>
</constructor>
<constructor>
<parameter name="expr_">
<paramtype>Expr const &</paramtype>
</parameter>
</constructor>
<method-group name="public static functions">
<method name="make" specifiers="static">
<type>Derived const</type>
<parameter name="expr">
<paramtype>Expr const &</paramtype>
</parameter>
<description>
<para>Construct an expression extension from the base expression.</para>
</description>
<return>Derived(expr)</return>
</method>
</method-group>
<method-group name="public member functions">
<!-- proto_base() -->
<method name="proto_base">
<type>proto_base_expr &</type>
<returns><computeroutput>proto_expr_.proto_base()</computeroutput></returns>
<throws><simpara>Will not throw.</simpara></throws>
</method>
<method name="proto_base" cv="const">
<type>proto_base_expr const &</type>
<returns><computeroutput>proto_expr_.proto_base()</computeroutput></returns>
<throws><simpara>Will not throw.</simpara></throws>
</method>
<!-- operator= -->
<method name="operator=">
<type><replaceable>unspecified</replaceable></type>
<template>
<template-type-parameter name="A"/>
</template>
<parameter name="a">
<paramtype>A &</paramtype>
</parameter>
<description>
<para>Lazy assignment expression</para>
</description>
<returns>
<para>A new expression node representing the assignment operation.</para>
</returns>
</method>
<method name="operator=">
<type><replaceable>unspecified</replaceable></type>
<template>
<template-type-parameter name="A"/>
</template>
<parameter name="a">
<paramtype>A const &</paramtype>
</parameter>
<description>
<para>
This is an overloaded member function, provided for convenience. It differs from
the above function only in what argument(s) it accepts.
</para>
</description>
</method>
<method name="operator=" cv="const">
<type><replaceable>unspecified</replaceable></type>
<template>
<template-type-parameter name="A"/>
</template>
<parameter name="a">
<paramtype>A &</paramtype>
</parameter>
<description>
<para>
This is an overloaded member function, provided for convenience. It differs from
the above function only in what argument(s) it accepts.
</para>
</description>
</method>
<method name="operator=" cv="const">
<type><replaceable>unspecified</replaceable></type>
<template>
<template-type-parameter name="A"/>
</template>
<parameter name="a">
<paramtype>A const &</paramtype>
</parameter>
<description>
<para>
This is an overloaded member function, provided for convenience. It differs from
the above function only in what argument(s) it accepts.
</para>
</description>
</method>
<!-- operator[] -->
<method name="operator[]">
<type><replaceable>unspecified</replaceable></type>
<template>
<template-type-parameter name="A"/>
</template>
<parameter name="a">
<paramtype>A &</paramtype>
</parameter>
<description>
<para>Lazy subscript expression</para>
</description>
<returns>
<para>A new expression node representing the subscript operation.</para>
</returns>
</method>
<method name="operator[]">
<type><replaceable>unspecified</replaceable></type>
<template>
<template-type-parameter name="A"/>
</template>
<parameter name="a">
<paramtype>A const &</paramtype>
</parameter>
<description>
<para>
This is an overloaded member function, provided for convenience. It differs from
the above function only in what argument(s) it accepts.
</para>
</description>
</method>
<method name="operator[]" cv="const">
<type><replaceable>unspecified</replaceable></type>
<template>
<template-type-parameter name="A"/>
</template>
<parameter name="a">
<paramtype>A &</paramtype>
</parameter>
<description>
<para>
This is an overloaded member function, provided for convenience. It differs from
the above function only in what argument(s) it accepts.
</para>
</description>
</method>
<method name="operator[]" cv="const">
<type><replaceable>unspecified</replaceable></type>
<template>
<template-type-parameter name="A"/>
</template>
<parameter name="a">
<paramtype>A const &</paramtype>
</parameter>
<description>
<para>
This is an overloaded member function, provided for convenience. It differs from
the above function only in what argument(s) it accepts.
</para>
</description>
</method>
<!-- operator() -->
<method name="operator()">
<type><replaceable>unspecified</replaceable></type>
<template>
<template-type-parameter name="A" pack="1"/>
</template>
<parameter name="a" pack="1">
<paramtype>A const &</paramtype>
</parameter>
<description>
<para>Lazy function call</para>
</description>
<returns>
<para>A new expression node representing the function call operation.</para>
</returns>
</method>
<method name="operator()" cv="const">
<type><replaceable>unspecified</replaceable></type>
<template>
<template-type-parameter name="A" pack="1"/>
</template>
<parameter name="a" pack="1">
<paramtype>A const &</paramtype>
</parameter>
<description>
<para>
This is an overloaded member function, provided for convenience. It differs from
the above function only in what argument(s) it accepts.
</para>
</description>
</method>
</method-group>
<data-member name="proto_expr_">
<type>Expr</type>
<purpose>For exposition only.</purpose>
</data-member>
<data-member name="proto_arity_c" specifiers="static">
<type>const long</type>
<purpose><computeroutput>= proto_base_expr::proto_arity_c;</computeroutput></purpose>
</data-member>
</struct>
</namespace>
</namespace>
<macro name="BOOST_PROTO_EXTENDS" kind="functionlike">
<macro-parameter name="Expr"/>
<macro-parameter name="Derived"/>
<macro-parameter name="Domain"/>
<purpose>For creating expression wrappers that add behaviors to a Proto expression template, like
<computeroutput><classname alt="boost::proto::extends">proto::extends<></classname></computeroutput>,
but while retaining POD-ness of the expression wrapper.</purpose>
<description>
<para>
Equivalent to:
<programlisting><macroname>BOOST_PROTO_BASIC_EXTENDS</macroname>(Expr, Derived, Domain)
<macroname>BOOST_PROTO_EXTENDS_ASSIGN</macroname>()
<macroname>BOOST_PROTO_EXTENDS_SUBSCRIPT</macroname>()
<macroname>BOOST_PROTO_EXTENDS_FUNCTION</macroname>()</programlisting>
</para>
<para>If the <computeroutput>Domain</computeroutput> parameter is dependent, you can specify it as
<computeroutput>typename Domain</computeroutput>, as in
<computeroutput>BOOST_PROTO_EXTENDS(Expr, Derived, typename Domain)</computeroutput>
</para>
<para>
<emphasis role="bold">Example:</emphasis><programlisting>template< class Expr >
struct my_expr;
struct my_domain
: <classname alt="boost::proto::domain">proto::domain</classname>< <classname alt="boost::proto::pod_generator">proto::pod_generator</classname>< my_expr > >
{};
template< class Expr >
struct my_expr
{
// OK, this makes my_expr<> a valid Proto expression extension.
// my_expr<> has overloaded assignment, subscript,
// and function call operators that build expression templates.
<macroname>BOOST_PROTO_EXTENDS</macroname>(Expr, my_expr, my_domain)
};
// OK, my_expr<> is POD, so this is statically initialized:
my_expr< <classname alt="boost::proto::terminal">proto::terminal</classname><int>::type > const _1 = {{1}};</programlisting>
</para>
</description>
</macro>
<macro name="BOOST_PROTO_BASIC_EXTENDS" kind="functionlike">
<macro-parameter name="Expr"/>
<macro-parameter name="Derived"/>
<macro-parameter name="Domain"/>
<purpose>For creating expression wrappers that add members to a Proto expression template, like
<computeroutput><classname alt="boost::proto::extends">proto::extends<></classname></computeroutput>,
but while retaining POD-ness of the expression wrapper.</purpose>
<description>
<para>
<computeroutput>BOOST_PROTO_BASIC_EXTENDS()</computeroutput> adds the basic typedefs, member functions, and
data members necessary to make a struct a valid Proto expression extension. It does <emphasis>not</emphasis>
add any constructors, virtual functions or access control blocks that would render the containing
struct non-POD.
</para>
<para>
<computeroutput>Expr</computeroutput> is the Proto expression that the enclosing struct extends.
<computeroutput>Derived</computeroutput> is the type of the enclosing struct.
<computeroutput>Domain</computeroutput> is the Proto domain to which this expression extension belongs.
(See <computeroutput><classname alt="boost::proto::domain">proto::domain<></classname></computeroutput>.)
Can be preceeded with "<computeroutput>typename</computeroutput>" if the specified domain is a dependent type.
</para>
<para><computeroutput>BOOST_PROTO_BASIC_EXTENDS()</computeroutput> adds to its enclosing struct
exactly one data member of type <computeroutput>Expr</computeroutput>.
</para>
<para>If the <computeroutput>Domain</computeroutput> parameter is dependent, you can specify it as
<computeroutput>typename Domain</computeroutput>, as in
<computeroutput>BOOST_PROTO_BASIC_EXTENDS(Expr, Derived, typename Domain)</computeroutput>
</para>
<para>
<emphasis role="bold">Example:</emphasis><programlisting>template< class Expr >
struct my_expr;
struct my_domain
: <classname alt="boost::proto::domain">proto::domain</classname>< <classname alt="boost::proto::pod_generator">proto::pod_generator</classname>< my_expr > >
{};
template< class Expr >
struct my_expr
{
// OK, this makes my_expr<> a valid Proto expression extension.
// my_expr<> does /not/ have overloaded assignment, subscript,
// and function call operators that build expression templates, however.
<macroname>BOOST_PROTO_BASIC_EXTENDS</macroname>(Expr, my_expr, my_domain)
};
// OK, my_expr<> is POD, so this is statically initialized:
my_expr< <classname alt="boost::proto::terminal">proto::terminal</classname><int>::type > const _1 = {{1}};</programlisting>
</para>
<para>
See also:
<itemizedlist>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_ASSIGN</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_SUBSCRIPT</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_FUNCTION</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS</macroname>()</computeroutput>
</listitem>
</itemizedlist>
</para>
</description>
</macro>
<macro name="BOOST_PROTO_EXTENDS_ASSIGN" kind="functionlike">
<purpose>For adding to an expression extension class an overloaded assignment operator that
builds an expression template.</purpose>
<description>
<para>
Use <computeroutput>BOOST_PROTO_EXTENDS_ASSIGN()</computeroutput> after <computeroutput>
<macroname>BOOST_PROTO_BASIC_EXTENDS</macroname>()</computeroutput> to give an expression
extension class an overloaded assignment operator that builds an expression template.
</para>
<para>
See also:
<itemizedlist>
<listitem>
<computeroutput><macroname>BOOST_PROTO_BASIC_EXTENDS</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_SUBSCRIPT</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_FUNCTION</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS</macroname>()</computeroutput>
</listitem>
</itemizedlist>
</para>
</description>
</macro>
<macro name="BOOST_PROTO_EXTENDS_FUNCTION" kind="functionlike">
<purpose>For adding to an expression extension class a set of overloaded function call operators
that build expression templates.</purpose>
<description>
<para>
Use <computeroutput>BOOST_PROTO_EXTENDS_FUNCTION()</computeroutput> after <computeroutput>
<macroname>BOOST_PROTO_BASIC_EXTENDS</macroname>()</computeroutput> to give an expression
extension class a set of overloaded function call operators that build expression templates.
In addition, <computeroutput>BOOST_PROTO_EXTENDS_FUNCTION()</computeroutput> adds a nested
<computeroutput>result<></computeroutput> class template that is a metafunction for
calculating the return type of the overloaded function call operators.
</para>
<para>
See also:
<itemizedlist>
<listitem>
<computeroutput><macroname>BOOST_PROTO_BASIC_EXTENDS</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_ASSIGN</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_SUBSCRIPT</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS</macroname>()</computeroutput>
</listitem>
</itemizedlist>
</para>
</description>
</macro>
<macro name="BOOST_PROTO_EXTENDS_SUBSCRIPT" kind="functionlike">
<purpose>For adding to an expression extension class an overloaded subscript operator that
builds an expression template.</purpose>
<description>
<para>
Use <computeroutput>BOOST_PROTO_EXTENDS_SUBSCRIPT()</computeroutput> after <computeroutput>
<macroname>BOOST_PROTO_BASIC_EXTENDS</macroname>()</computeroutput> to give an expression
extension class an overloaded subscript operator that builds an expression template.
</para>
<para>
See also:
<itemizedlist>
<listitem>
<computeroutput><macroname>BOOST_PROTO_BASIC_EXTENDS</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_ASSIGN</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_FUNCTION</macroname>()</computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS</macroname>()</computeroutput>
</listitem>
</itemizedlist>
</para>
</description>
</macro>
<macro name="BOOST_PROTO_EXTENDS_USING_ASSIGN" kind="functionlike">
<macro-parameter name="Derived"/>
<purpose>For exposing in classes that inherit from
<computeroutput><classname alt="boost::proto::extends">proto::extends<></classname></computeroutput>
the overloaded assignment operators defined therein.</purpose>
<description>
<para>
The standard usage of
<computeroutput><classname alt="boost::proto::extends">proto::extends<></classname></computeroutput>
is to inherit from it. However, the derived class automatically gets a compiler-generated assignment
operator that will hide the ones defined in
<computeroutput><classname alt="boost::proto::extends">proto::extends<></classname></computeroutput>.
Use <code>BOOST_PROTO_EXTENDS_USING_ASSIGN()</code> in the derived class to unhide the assignment
operators defined in
<computeroutput><classname alt="boost::proto::extends">proto::extends<></classname></computeroutput>.
</para>
<para>
See <computeroutput><classname alt="boost::proto::extends">proto::extends<></classname></computeroutput>
for an example that demonstrates usage of <code>BOOST_PROTO_EXTENDS_USING_ASSIGN()</code>.
</para>
</description>
</macro>
<macro name="BOOST_PROTO_EXTENDS_USING_ASSIGN_NON_DEPENDENT" kind="functionlike">
<macro-parameter name="Derived"/>
<purpose>For exposing in classes that inherit from
<computeroutput><classname alt="boost::proto::extends">proto::extends<></classname></computeroutput>
the overloaded assignment operators defined therein. Unlike the
<computeroutput><macroname>BOOST_PROTO_EXTENDS_USING_ASSIGN</macroname>()</computeroutput> macro,
<code>BOOST_PROTO_EXTENDS_USING_ASSIGN_NON_DEPENDENT()</code> is for use in non-dependent
contexts.
</purpose>
<description>
<para>
The standard usage of
<computeroutput><classname alt="boost::proto::extends">proto::extends<></classname></computeroutput>
is to define a class template that inherits from it. The derived class template automatically gets a
compiler-generated assignment operator that hides the ones defined in
<computeroutput><classname alt="boost::proto::extends">proto::extends<></classname></computeroutput>.
Using <code>BOOST_PROTO_EXTENDS_USING_ASSIGN()</code> in the derived class solves this problem.
</para>
<para>
However, if the expression extension is an ordinary class and not a class template, the usage of
<code>BOOST_PROTO_EXTENDS_USING_ASSIGN()</code> is in a so-called non-dependent context. In plain English,
it means it is illegal to use <code>typename</code> in some places where it is required in a class template.
In those cases, you should use <code>BOOST_PROTO_EXTENDS_USING_ASSIGN_NON_DEPENDENT()</code> instead.
</para>
<para>
See also:
<itemizedlist>
<listitem>
<computeroutput><classname alt="boost::proto::extends">proto::extends<></classname></computeroutput>
</listitem>
<listitem>
<computeroutput><macroname>BOOST_PROTO_EXTENDS_USING_ASSIGN</macroname>()</computeroutput>
</listitem>
</itemizedlist>
</para>
</description>
</macro>
</header>
|