1<html> 2<head> 3<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 4<title>push_back</title> 5<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> 6<meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> 7<link rel="home" href="../../../../index.html" title="Chapter 1. Range 2.0"> 8<link rel="up" href="../new.html" title="New algorithms"> 9<link rel="prev" href="overwrite.html" title="overwrite"> 10<link rel="next" href="push_front.html" title="push_front"> 11</head> 12<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> 13<table cellpadding="2" width="100%"><tr> 14<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../boost.png"></td> 15<td align="center"><a href="../../../../../../../../index.html">Home</a></td> 16<td align="center"><a href="../../../../../../../../libs/libraries.htm">Libraries</a></td> 17<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> 18<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> 19<td align="center"><a href="../../../../../../../../more/index.htm">More</a></td> 20</tr></table> 21<hr> 22<div class="spirit-nav"> 23<a accesskey="p" href="overwrite.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../new.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="push_front.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> 24</div> 25<div class="section"> 26<div class="titlepage"><div><div><h5 class="title"> 27<a name="range.reference.algorithms.new.push_back"></a><a class="link" href="push_back.html" title="push_back">push_back</a> 28</h5></div></div></div> 29<h6> 30<a name="range.reference.algorithms.new.push_back.h0"></a> 31 <span class="phrase"><a name="range.reference.algorithms.new.push_back.prototype"></a></span><a class="link" href="push_back.html#range.reference.algorithms.new.push_back.prototype">Prototype</a> 32 </h6> 33<p> 34</p> 35<pre class="programlisting"><span class="keyword">template</span><span class="special"><</span> 36 <span class="keyword">class</span> <span class="identifier">Container</span><span class="special">,</span> 37 <span class="keyword">class</span> <span class="identifier">SinglePassRange</span> 38 <span class="special">></span> 39<span class="identifier">Container</span><span class="special">&</span> <span class="identifier">push_back</span><span class="special">(</span><span class="identifier">Container</span><span class="special">&</span> <span class="identifier">target</span><span class="special">,</span> 40 <span class="keyword">const</span> <span class="identifier">SinglePassRange</span><span class="special">&</span> <span class="identifier">from</span><span class="special">);</span> 41</pre> 42<p> 43 </p> 44<h6> 45<a name="range.reference.algorithms.new.push_back.h1"></a> 46 <span class="phrase"><a name="range.reference.algorithms.new.push_back.description"></a></span><a class="link" href="push_back.html#range.reference.algorithms.new.push_back.description">Description</a> 47 </h6> 48<p> 49 <code class="computeroutput"><span class="identifier">push_back</span></code> all of the 50 elements in the range <code class="computeroutput"><span class="identifier">from</span></code> 51 to the back of the container <code class="computeroutput"><span class="identifier">target</span></code>. 52 </p> 53<h6> 54<a name="range.reference.algorithms.new.push_back.h2"></a> 55 <span class="phrase"><a name="range.reference.algorithms.new.push_back.definition"></a></span><a class="link" href="push_back.html#range.reference.algorithms.new.push_back.definition">Definition</a> 56 </h6> 57<p> 58 Defined in the header file <code class="computeroutput"><span class="identifier">boost</span><span class="special">/</span><span class="identifier">range</span><span class="special">/</span><span class="identifier">algorithm_ext</span><span class="special">/</span><span class="identifier">push_back</span><span class="special">.</span><span class="identifier">hpp</span></code> 59 </p> 60<h6> 61<a name="range.reference.algorithms.new.push_back.h3"></a> 62 <span class="phrase"><a name="range.reference.algorithms.new.push_back.requirements"></a></span><a class="link" href="push_back.html#range.reference.algorithms.new.push_back.requirements">Requirements</a> 63 </h6> 64<div class="orderedlist"><ol class="orderedlist" type="1"> 65<li class="listitem"> 66 <code class="computeroutput"><span class="identifier">SinglePassRange</span></code> is 67 a model of the <a class="link" href="../../../concepts/single_pass_range.html" title="Single Pass Range">Single 68 Pass Range</a> Concept. 69 </li> 70<li class="listitem"> 71 <code class="computeroutput"><span class="identifier">Container</span></code> supports 72 insert at <code class="computeroutput"><span class="identifier">end</span><span class="special">()</span></code>. 73 </li> 74<li class="listitem"> 75 <code class="computeroutput"><span class="identifier">SinglePassRange</span></code>'s 76 value type is convertible to <code class="computeroutput"><span class="identifier">Container</span></code>'s 77 value type. 78 </li> 79</ol></div> 80<h6> 81<a name="range.reference.algorithms.new.push_back.h4"></a> 82 <span class="phrase"><a name="range.reference.algorithms.new.push_back.complexity"></a></span><a class="link" href="push_back.html#range.reference.algorithms.new.push_back.complexity">Complexity</a> 83 </h6> 84<p> 85 Linear. <code class="computeroutput"><span class="identifier">distance</span><span class="special">(</span><span class="identifier">from</span><span class="special">)</span></code> 86 assignments are performed. 87 </p> 88</div> 89<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> 90<td align="left"></td> 91<td align="right"><div class="copyright-footer">Copyright © 2003-2010 Thorsten Ottosen, 92 Neil Groves<p> 93 Distributed under the Boost Software License, Version 1.0. (See accompanying 94 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>) 95 </p> 96</div></td> 97</tr></table> 98<hr> 99<div class="spirit-nav"> 100<a accesskey="p" href="overwrite.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../new.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="push_front.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> 101</div> 102</body> 103</html> 104