2006-08-22 15:57:13 +00:00
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
|
|
|
<title>deref</title>
|
|
|
|
|
<link rel="stylesheet" href="../../../boostbook.css" type="text/css">
|
|
|
|
|
<meta name="generator" content="DocBook XSL Stylesheets V1.66.1">
|
|
|
|
|
<link rel="start" href="../../../index.html" title="Chapter<65>1.<2E>Fusion 2.0">
|
|
|
|
|
<link rel="up" href="../metafunctions.html" title="Metafunctions">
|
|
|
|
|
<link rel="prev" href="value_of.html" title="value_of">
|
|
|
|
|
<link rel="next" href="next.html" title="next">
|
|
|
|
|
</head>
|
|
|
|
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
|
|
|
|
<table cellpadding="2" width="100%">
|
|
|
|
|
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td>
|
|
|
|
|
<td align="center"><a href="../../../../../../../index.htm">Home</a></td>
|
|
|
|
|
<td align="center"><a href="../../../../../../libraries.htm">Libraries</a></td>
|
|
|
|
|
<td align="center"><a href="../../../../../../../people/people.htm">People</a></td>
|
|
|
|
|
<td align="center"><a href="../../../../../../../more/faq.htm">FAQ</a></td>
|
|
|
|
|
<td align="center"><a href="../../../../../../../more/index.htm">More</a></td>
|
|
|
|
|
</table>
|
|
|
|
|
<hr>
|
|
|
|
|
<div class="spirit-nav">
|
|
|
|
|
<a accesskey="p" href="value_of.html"><img src="../../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../metafunctions.html"><img src="../../../images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../images/home.png" alt="Home"></a><a accesskey="n" href="next.html"><img src="../../../images/next.png" alt="Next"></a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="section" lang="en">
|
|
|
|
|
<div class="titlepage"><div><div><h4 class="title">
|
|
|
|
|
<a name="fusion.iterators.metafunctions.deref"></a><a href="deref.html" title="deref">deref</a></h4></div></div></div>
|
|
|
|
|
<a name="fusion.iterators.metafunctions.deref.description"></a><h5>
|
2006-09-21 12:43:48 +00:00
|
|
|
|
<a name="id469299"></a>
|
2006-08-22 15:57:13 +00:00
|
|
|
|
<a href="deref.html#fusion.iterators.metafunctions.deref.description">Description</a>
|
|
|
|
|
</h5>
|
|
|
|
|
<p>
|
|
|
|
|
Returns the type that will be returned by dereferencing an iterator.
|
|
|
|
|
</p>
|
|
|
|
|
<a name="fusion.iterators.metafunctions.deref.synposis"></a><h5>
|
2006-09-21 12:43:48 +00:00
|
|
|
|
<a name="id469330"></a>
|
2006-08-22 15:57:13 +00:00
|
|
|
|
<a href="deref.html#fusion.iterators.metafunctions.deref.synposis">Synposis</a>
|
|
|
|
|
</h5>
|
|
|
|
|
<pre class="programlisting">
|
|
|
|
|
<span class="keyword">template</span><span class="special"><</span>
|
|
|
|
|
<span class="keyword">typename</span> <span class="identifier">I</span>
|
|
|
|
|
<span class="special">></span>
|
|
|
|
|
<span class="keyword">struct</span> <span class="identifier">deref</span>
|
|
|
|
|
<span class="special">{</span>
|
|
|
|
|
<span class="keyword">typedef</span> <span class="emphasis"><em>unspecified</em></span> <span class="identifier">type</span><span class="special">;</span>
|
|
|
|
|
<span class="special">};</span>
|
|
|
|
|
</pre>
|
|
|
|
|
<div class="informaltable">
|
|
|
|
|
<h4>
|
2006-09-21 12:43:48 +00:00
|
|
|
|
<a name="id469433"></a>
|
2006-08-22 15:57:13 +00:00
|
|
|
|
<span class="table-title">Parameters</span>
|
|
|
|
|
</h4>
|
|
|
|
|
<table class="table">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col>
|
|
|
|
|
<col>
|
|
|
|
|
<col>
|
|
|
|
|
</colgroup>
|
|
|
|
|
<thead><tr>
|
|
|
|
|
<th>Parameter</th>
|
|
|
|
|
<th>Requirement</th>
|
|
|
|
|
<th>Description</th>
|
|
|
|
|
</tr></thead>
|
|
|
|
|
<tbody><tr>
|
|
|
|
|
<td><tt class="computeroutput"><span class="identifier">I</span></tt></td>
|
|
|
|
|
<td>Model
|
|
|
|
|
of <a href="../concepts/forward_iterator.html" title="Forward
|
|
|
|
|
Iterator">Forward
|
|
|
|
|
Iterator</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>Operation's argument</td>
|
|
|
|
|
</tr></tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<a name="fusion.iterators.metafunctions.deref.expression_semantics"></a><h5>
|
2006-09-21 12:43:48 +00:00
|
|
|
|
<a name="id469510"></a>
|
2006-08-22 15:57:13 +00:00
|
|
|
|
<a href="deref.html#fusion.iterators.metafunctions.deref.expression_semantics">Expression
|
|
|
|
|
Semantics</a>
|
|
|
|
|
</h5>
|
|
|
|
|
<pre class="programlisting">
|
|
|
|
|
<a href="deref.html" title="deref"><tt class="computeroutput"><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">deref</span></tt></a><span class="special"><</span><span class="identifier">I</span><span class="special">>::</span><span class="identifier">type</span>
|
|
|
|
|
</pre>
|
|
|
|
|
<p>
|
|
|
|
|
<span class="bold"><b>Return type</b></span>: Any type
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
<span class="bold"><b>Semantics</b></span>: Returns the result of dereferencing
|
|
|
|
|
an iterator of type <tt class="computeroutput"><span class="identifier">I</span></tt>.
|
|
|
|
|
</p>
|
|
|
|
|
<a name="fusion.iterators.metafunctions.deref.header"></a><h5>
|
2006-09-21 12:43:48 +00:00
|
|
|
|
<a name="id469622"></a>
|
2006-08-22 15:57:13 +00:00
|
|
|
|
<a href="deref.html#fusion.iterators.metafunctions.deref.header">Header</a>
|
|
|
|
|
</h5>
|
|
|
|
|
<pre class="programlisting">
|
|
|
|
|
<span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">fusion</span><span class="special">/</span><span class="identifier">iterator</span><span class="special">/</span><span class="identifier">deref</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span>
|
|
|
|
|
</pre>
|
|
|
|
|
<a name="fusion.iterators.metafunctions.deref.example"></a><h5>
|
2006-09-21 12:43:48 +00:00
|
|
|
|
<a name="id469716"></a>
|
2006-08-22 15:57:13 +00:00
|
|
|
|
<a href="deref.html#fusion.iterators.metafunctions.deref.example">Example</a>
|
|
|
|
|
</h5>
|
|
|
|
|
<pre class="programlisting">
|
|
|
|
|
<span class="keyword">typedef</span> <a href="../../sequences/containers/vector.html" title="vector"><tt class="computeroutput"><span class="identifier">vector</span></tt></a><span class="special"><</span><span class="keyword">int</span><span class="special">,</span><span class="keyword">int</span><span class="special">&></span> <span class="identifier">vec</span><span class="special">;</span>
|
|
|
|
|
<span class="keyword">typedef</span> <span class="keyword">const</span> <span class="identifier">vec</span> <span class="identifier">const_vec</span><span class="special">;</span>
|
|
|
|
|
<span class="keyword">typedef</span> <a href="../../sequences/intrinsics/metafunctions/begin.html" title="begin"><tt class="computeroutput"><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">begin</span></tt></a><span class="special"><</span><span class="identifier">vec</span><span class="special">>::</span><span class="identifier">type</span> <span class="identifier">first</span><span class="special">;</span>
|
|
|
|
|
<span class="keyword">typedef</span> <a href="next.html" title="next"><tt class="computeroutput"><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">next</span></tt></a><span class="special"><</span><span class="identifier">first</span><span class="special">>::</span><span class="identifier">type</span> <span class="identifier">second</span><span class="special">;</span>
|
|
|
|
|
|
|
|
|
|
<span class="keyword">typedef</span> <a href="../../sequences/intrinsics/metafunctions/begin.html" title="begin"><tt class="computeroutput"><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">begin</span></tt></a><span class="special"><</span><span class="identifier">const_vec</span><span class="special">>::</span><span class="identifier">type</span> <span class="identifier">const_first</span><span class="special">;</span>
|
|
|
|
|
<span class="keyword">typedef</span> <a href="next.html" title="next"><tt class="computeroutput"><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">next</span></tt></a><span class="special"><</span><span class="identifier">const_first</span><span class="special">>::</span><span class="identifier">type</span> <span class="identifier">const_second</span><span class="special">;</span>
|
|
|
|
|
|
|
|
|
|
<span class="identifier">BOOST_MPL_ASSERT</span><span class="special">((</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">is_same</span><span class="special"><</span><a href="deref.html" title="deref"><tt class="computeroutput"><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">deref</span></tt></a><span class="special"><</span><span class="identifier">first</span><span class="special">>::</span><span class="identifier">type</span><span class="special">,</span> <span class="keyword">int</span><span class="special">&>));</span>
|
|
|
|
|
<span class="identifier">BOOST_MPL_ASSERT</span><span class="special">((</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">is_same</span><span class="special"><</span><a href="deref.html" title="deref"><tt class="computeroutput"><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">deref</span></tt></a><span class="special"><</span><span class="identifier">second</span><span class="special">>::</span><span class="identifier">type</span><span class="special">,</span> <span class="keyword">int</span><span class="special">&>));</span>
|
|
|
|
|
</pre>
|
|
|
|
|
</div>
|
|
|
|
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
|
|
|
|
<td align="left"></td>
|
|
|
|
|
<td align="right"><small>Copyright <20> 2001-2005 Joel de Guzman, Dan Marsden</small></td>
|
|
|
|
|
</tr></table>
|
|
|
|
|
<hr>
|
|
|
|
|
<div class="spirit-nav">
|
|
|
|
|
<a accesskey="p" href="value_of.html"><img src="../../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../metafunctions.html"><img src="../../../images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../images/home.png" alt="Home"></a><a accesskey="n" href="next.html"><img src="../../../images/next.png" alt="Next"></a>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|