mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 09:36:24 +00:00
268 lines
9.1 KiB
HTML
268 lines
9.1 KiB
HTML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<head>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||
<title>insert</title>
|
||
<link rel="stylesheet" href="apiReference.css" type="text/css" />
|
||
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
|
||
<link rel="start" href="index.html" title="Berkeley DB C++ Standard Template Library API Reference" />
|
||
<link rel="up" href="db_vector.html" title="Chapter 4. Db_vector" />
|
||
<link rel="prev" href="stldb_vectorpop_front.html" title="pop_front" />
|
||
<link rel="next" href="stldb_vectorerase.html" title="erase" />
|
||
</head>
|
||
<body>
|
||
<div xmlns="" class="navheader">
|
||
<div class="libver">
|
||
<p>Library Version 11.2.5.2</p>
|
||
</div>
|
||
<table width="100%" summary="Navigation header">
|
||
<tr>
|
||
<th colspan="3" align="center">insert</th>
|
||
</tr>
|
||
<tr>
|
||
<td width="20%" align="left"><a accesskey="p" href="stldb_vectorpop_front.html">Prev</a> </td>
|
||
<th width="60%" align="center">Chapter 4.
|
||
Db_vector </th>
|
||
<td width="20%" align="right"> <a accesskey="n" href="stldb_vectorerase.html">Next</a></td>
|
||
</tr>
|
||
</table>
|
||
<hr />
|
||
</div>
|
||
<div class="sect1" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h2 class="title" style="clear: both"><a id="stldb_vectorinsert"></a>insert</h2>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sect2" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h3 class="title"><a id="stldb_vectorinsert_details"></a>Function Details</h3>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<pre class="programlisting">
|
||
iterator insert(iterator pos,
|
||
const T &x)
|
||
</pre>
|
||
<p>Insert x before position pos. </p>
|
||
<div class="sect3" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h4 class="title"><a id="id3598478"></a>Parameters</h4>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sect4" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h5 class="title"><a id="id3598507"></a>x</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The element to insert. </p>
|
||
</div>
|
||
<div class="sect4" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h5 class="title"><a id="id3598628"></a>pos</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The position before which to insert. </p>
|
||
</div>
|
||
</div>
|
||
<pre class="programlisting">
|
||
void insert(iterator pos, size_type n,
|
||
const T &x)
|
||
</pre>
|
||
<p>Insert n number of elements x before position pos. </p>
|
||
<div class="sect3" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h4 class="title"><a id="id3598633"></a>Parameters</h4>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sect4" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h5 class="title"><a id="id3598637"></a>x</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The element to insert. </p>
|
||
</div>
|
||
<div class="sect4" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h5 class="title"><a id="id3598651"></a>pos</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The position before which to insert. </p>
|
||
</div>
|
||
<div class="sect4" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h5 class="title"><a id="id3598656"></a>n</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The number of elements to insert. </p>
|
||
</div>
|
||
</div>
|
||
<pre class="programlisting">
|
||
void insert(iterator pos, InputIterator first,
|
||
InputIterator last)
|
||
</pre>
|
||
<p>Range insertion. </p>
|
||
<p>Insert elements in range [first, last) into this vector before position pos. </p>
|
||
<div class="sect3" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h4 class="title"><a id="id3598665"></a>Parameters</h4>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sect4" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h5 class="title"><a id="id3598668"></a>last</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The open boundary of the range. </p>
|
||
</div>
|
||
<div class="sect4" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h5 class="title"><a id="id3598682"></a>pos</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The position before which to insert. </p>
|
||
</div>
|
||
<div class="sect4" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h5 class="title"><a id="id3598687"></a>first</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The closed boundary of the range. </p>
|
||
</div>
|
||
</div>
|
||
<pre class="programlisting">
|
||
void insert(iterator pos, const_iterator first,
|
||
const_iterator last)
|
||
</pre>
|
||
<p>Range insertion. </p>
|
||
<p>Insert elements in range [first, last) into this vector before position pos. </p>
|
||
<div class="sect3" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h4 class="title"><a id="id3598695"></a>Parameters</h4>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sect4" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h5 class="title"><a id="id3598698"></a>last</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The open boundary of the range. </p>
|
||
</div>
|
||
<div class="sect4" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h5 class="title"><a id="id3598712"></a>pos</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The position before which to insert. </p>
|
||
</div>
|
||
<div class="sect4" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h5 class="title"><a id="id3598718"></a>first</h5>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The closed boundary of the range. </p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sect2" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h3 class="title"><a id="id3598102"></a>Group: Insert functions</h3>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The iterator pos in the functions must be a read-write iterator, can't be read only.</p>
|
||
<div class="simplesect" lang="en" xml:lang="en">
|
||
<div class="titlepage"></div>
|
||
<p>
|
||
<a class="ulink" href="http://www.cplusplus.com/reference/stl/vector/insert/" target="_top">http://www.cplusplus.com/reference/stl/vector/insert/</a>
|
||
</p>
|
||
</div>
|
||
<p>
|
||
</p>
|
||
</div>
|
||
<div class="sect2" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h3 class="title"><a id="id3598508"></a>Class</h3>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>
|
||
<a class="link" href="db_vector.html" title="Chapter 4. Db_vector">db_vector</a>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
<div class="navfooter">
|
||
<hr />
|
||
<table width="100%" summary="Navigation footer">
|
||
<tr>
|
||
<td width="40%" align="left"><a accesskey="p" href="stldb_vectorpop_front.html">Prev</a> </td>
|
||
<td width="20%" align="center">
|
||
<a accesskey="u" href="db_vector.html">Up</a>
|
||
</td>
|
||
<td width="40%" align="right"> <a accesskey="n" href="stldb_vectorerase.html">Next</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td width="40%" align="left" valign="top">pop_front </td>
|
||
<td width="20%" align="center">
|
||
<a accesskey="h" href="index.html">Home</a>
|
||
</td>
|
||
<td width="40%" align="right" valign="top"> erase</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
</body>
|
||
</html>
|