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
|
<?xml version="1.0" encoding="utf-8"?>
<header name="boost/proto/expr.hpp">
<namespace name="boost">
<namespace name="proto">
<!-- boost::proto::expr -->
<struct name="expr">
<template>
<template-type-parameter name="Tag"/>
<template-type-parameter name="Args"/>
<template-nontype-parameter name="Arity">
<type>long</type>
<default>Args::arity</default>
</template-nontype-parameter>
</template>
<purpose>Representation of a node in an expression tree.</purpose>
<description>
<para>
<computeroutput>proto::expr<></computeroutput> is a node in an expression
template tree. It is a container for its child sub-trees. It also serves as the
terminal nodes of the tree.
</para>
<para>
<computeroutput>Tag</computeroutput> is type that represents the operation
encoded by this expression. It is typically one of the structs in the
<computeroutput>boost::proto::tag</computeroutput> namespace, but it doesn't
have to be. If <computeroutput>Arity</computeroutput> is 0 then this
<computeroutput>expr<></computeroutput> type represents a leaf in the
expression tree.
</para>
<para>
<computeroutput>Args</computeroutput> is a list of types representing
the children of this expression. It is an instantiation of one of
<computeroutput><classname alt="proto::listN">proto::list1<></classname></computeroutput>,
<computeroutput><classname alt="proto::listN">proto::list2<></classname></computeroutput>,
etc. The child types
must all themselves be either <computeroutput>proto::expr<></computeroutput>
or <computeroutput>proto::expr<>&</computeroutput> (or extensions thereof via
<computeroutput><classname>proto::extends<></classname></computeroutput> or
<computeroutput><macroname>BOOST_PROTO_EXTENDS</macroname>()</computeroutput>), unless
<computeroutput>Arity</computeroutput> is 0, in which case
<computeroutput>Args</computeroutput> must be
<computeroutput>proto::term<T></computeroutput>, where
<computeroutput>T</computeroutput> can be any type.
</para>
<para>
<computeroutput>proto::expr<></computeroutput> is a valid Fusion
random-access sequence, where the elements of the sequence are the child
expressions.
</para>
</description>
<!-- typedefs -->
<typedef name="proto_tag">
<type>Tag</type>
</typedef>
<typedef name="proto_args">
<type>Args</type>
</typedef>
<typedef name="proto_arity">
<type>mpl::long_< Arity ></type>
</typedef>
<typedef name="proto_domain">
<type><classname>proto::default_domain</classname></type>
</typedef>
<typedef name="proto_base_expr">
<type>expr</type>
</typedef>
<typedef name="proto_derived_expr">
<type>expr</type>
</typedef>
<typedef name="proto_childN">
<type>typename Args::child<replaceable>N</replaceable></type>
<purpose>For each <replaceable>N</replaceable> in <replaceable>[0,max(Arity,1))</replaceable>.</purpose>
</typedef>
<struct name="result">
<template>
<template-type-parameter name="Signature"/>
</template>
<description>
<para>
Encodes the return type of <computeroutput><classname>proto::expr<></classname>::operator()</computeroutput>.
Makes <computeroutput><classname>proto::expr<></classname></computeroutput> a TR1-style function object type
usable with <computeroutput>boost::result_of<></computeroutput>
</para>
</description>
<typedef name="type">
<type><replaceable>unspecified</replaceable></type>
</typedef>
</struct>
<method-group name="public static functions">
<!-- make -->
<method name="make" specifiers="static">
<type>expr const</type>
<template>
<template-type-parameter name="A" pack="1"/>
</template>
<parameter name="a" pack="1">
<paramtype>A const &</paramtype>
</parameter>
<requires>
<para>
The number of supplied arguments must be <computeroutput>max(Arity,1)</computeroutput>.
</para>
</requires>
<returns>
<para>
A new <computeroutput>expr</computeroutput> object initialized with the specified arguments.
</para>
</returns>
</method>
</method-group>
<method-group name="public member functions">
<method name="proto_base">
<type>expr &</type>
<returns><para><computeroutput>*this</computeroutput></para></returns>
</method>
<method name="proto_base" cv="const">
<type>expr const &</type>
<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 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="childN">
<type>proto_child<replaceable>N</replaceable></type>
<purpose>For each <replaceable>N</replaceable> in <replaceable>[0,max(Arity,1))</replaceable>.</purpose>
</data-member>
<data-member name="proto_arity_c" specifiers="static">
<type>const long</type>
<purpose>
<computeroutput>= Arity;</computeroutput>
</purpose>
</data-member>
</struct>
<!-- proto::unexpr -->
<struct name="unexpr">
<template>
<template-type-parameter name="Expr"/>
</template>
<purpose>Lets you inherit the interface of an expression while hiding from Proto the fact that
the type is a Proto expression.</purpose>
<inherit><type>Expr</type></inherit>
<method-group name="public member functions"/>
<constructor>
<parameter name="expr">
<paramtype>Expr const &</paramtype>
</parameter>
</constructor>
<description>
<para>
For an expression type <computeroutput>E</computeroutput>,
<computeroutput>
<classname>proto::is_expr</classname><E>::value
</computeroutput> is <computeroutput>true</computeroutput>, but
<computeroutput>
<classname>proto::is_expr</classname><proto::unexpr<E> >::value
</computeroutput> is <computeroutput>false</computeroutput>.
</para>
</description>
</struct>
</namespace>
</namespace>
</header>
|