From 77bca84d16ffd55e354913d4438dcea6125ee52f Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Mon, 27 Jun 2005 12:52:26 +0000 Subject: [PATCH] insert/erase_element --- doc/matrix.htm | 4 ++-- doc/vector.htm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/matrix.htm b/doc/matrix.htm index 7dfee5a7..8b4d6ff3 100644 --- a/doc/matrix.htm +++ b/doc/matrix.htm @@ -190,13 +190,13 @@ scalar. Swaps the contents of the matrices. -void insert (size_type i, size_type j, const_reference +void insert_element (size_type i, size_type j, const_reference t) Inserts the value t at the j-th element of the i-th row. -void erase (size_type i, size_type j) +void erase_element (size_type i, size_type j) Erases the value at the j-th element of the i-th row. diff --git a/doc/vector.htm b/doc/vector.htm index 5e07df6e..fd6175fe 100644 --- a/doc/vector.htm +++ b/doc/vector.htm @@ -265,13 +265,13 @@ scalar. Swaps the contents of the vectors. -void insert (size_type i, const_reference t) +void insert_element (size_type i, const_reference t) Vector Inserts the value t at the i-th element. -void erase (size_type i) +void erase_element (size_type i) Vector Erases the value at the i-th element.