2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-22 15:52:18 +00:00

insert/erase_element

This commit is contained in:
Michael Stevens
2005-06-27 12:52:26 +00:00
parent 1255b14119
commit 77bca84d16
2 changed files with 4 additions and 4 deletions

View File

@@ -190,13 +190,13 @@ scalar.</td>
<td>Swaps the contents of the matrices.</td>
</tr>
<tr>
<td><code>void insert (size_type i, size_type j, const_reference
<td><code>void insert_element (size_type i, size_type j, const_reference
t)</code></td>
<td>Inserts the value <code>t</code> at the <code>j</code>-th
element of the <code>i</code>-th row.</td>
</tr>
<tr>
<td><code>void erase (size_type i, size_type j)</code></td>
<td><code>void erase_element (size_type i, size_type j)</code></td>
<td>Erases the value at the <code>j</code>-th element of the
<code>i</code>-th row.</td>
</tr>

View File

@@ -265,13 +265,13 @@ scalar.</td>
<td>Swaps the contents of the vectors.</td>
</tr>
<tr>
<td><code>void insert (size_type i, const_reference t)</code></td>
<td><code>void insert_element (size_type i, const_reference t)</code></td>
<td><a href="container_concept.htm#vector">Vector</a></td>
<td>Inserts the value <code>t</code> at the <code>i</code>-th
element.</td>
</tr>
<tr>
<td><code>void erase (size_type i)</code></td>
<td><code>void erase_element (size_type i)</code></td>
<td><a href="container_concept.htm#vector">Vector</a></td>
<td>Erases the value at the <code>i</code>-th element.</td>
</tr>