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
|
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- saved from url=(0014)about:internet -->
<html xmlns:MSHelp="http://www.microsoft.com/MSHelp/" lang="en-us" xml:lang="en-us"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="DC.Type" content="reference">
<meta name="DC.Title" content="Parallel Iteration">
<meta name="DC.subject" content="Parallel Iteration">
<meta name="keywords" content="Parallel Iteration">
<meta name="DC.Relation" scheme="URI" content="../../../reference/containers_overview/concurrent_vector.htm">
<meta name="DC.Relation" scheme="URI" content="../container_range_concept.htm">
<meta name="DC.Format" content="XHTML">
<meta name="DC.Identifier" content="parallel_iteration">
<meta name="DC.Language" content="en-US">
<link rel="stylesheet" type="text/css" href="../../../intel_css_styles.css">
<title>Parallel Iteration</title>
</head>
<body id="parallel_iteration">
<!-- ==============(Start:NavScript)================= -->
<script src="..\..\..\NavScript.js" language="JavaScript1.2" type="text/javascript"></script>
<script language="JavaScript1.2" type="text/javascript">WriteNavLink(3);</script>
<!-- ==============(End:NavScript)================= -->
<a name="parallel_iteration"><!-- --></a>
<h1 class="topictitle1">Parallel Iteration</h1>
<div>
<div class="section">
<p>Types
<samp class="codeph">const_range_type</samp> and
<samp class="codeph">range_type</samp> model the Container Range concept. The
types differ only in that the bounds for a
<samp class="codeph">const_range_type</samp> are of type
<samp class="codeph">const_iterator</samp>, whereas the bounds for a
<samp class="codeph">range_type</samp> are of type
<samp class="codeph">iterator</samp>.
</p>
<div class="tablenoborder"><table cellpadding="4" summary="" frame="border" border="1" cellspacing="0" rules="all"><span class="tabledesc">The following table provides additional information on the
members of this template class.
</span><thead align="left">
<tr>
<th class="cellrowborder" valign="top" width="33.89830508474576%" id="d58332e53">Member
</th>
<th class="cellrowborder" valign="top" width="66.10169491525423%" id="d58332e56">Description
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d58332e53 "><span class="keyword">range_type range( size_t
grainsize=1 )</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d58332e56 ">
<p><strong>Returns</strong>: Range over entire
<samp class="codeph">concurrent_vector</samp> that permits read-write
access.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d58332e53 "><span class="keyword"> const_range_type range( size_t
grainsize=1 ) const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d58332e56 ">
<p><strong>Returns</strong>: Range over entire
<samp class="codeph">concurrent_vector</samp> that permits read-only
access.
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="../../../reference/containers_overview/concurrent_vector.htm">concurrent_vector</a></div>
</div>
<div class="See Also">
<h2>See Also</h2>
<div class="linklist">
<div><a href="../container_range_concept.htm">Container Range Concept
</a></div></div>
</div>
</body>
</html>
|