Bugfix: "remove(first, beyond)" was missing from the documentation

This commit is contained in:
Clement Jamin 2013-04-10 17:30:12 +02:00
parent 492c8442eb
commit f69d3e5e88
1 changed files with 11 additions and 0 deletions

View File

@ -202,6 +202,17 @@ Removes the vertex `v` from the triangulation.
*/
void remove(Vertex_handle v);
/*!
Removes the vertices specified by the iterator range `[first, beyond)`.
The function `remove(Vertex_handle)` is called over each element of the range.
The number of vertices removed is returned.
\pre (i) all vertices of the range are finite vertices of the triangulation; and (ii) no vertices are repeated in the range.
\tparam InputIterator must be an input iterator with value type `Vertex_handle`.
*/
template < typename InputIterator >
int remove(InputIterator first, InputIterator beyond);
/// @}
/*! \name Queries