mirror of https://github.com/CGAL/cgal
Bugfix: "remove(first, beyond)" was missing from the documentation
This commit is contained in:
parent
492c8442eb
commit
f69d3e5e88
|
|
@ -202,6 +202,17 @@ Removes the vertex `v` from the triangulation.
|
||||||
*/
|
*/
|
||||||
void remove(Vertex_handle v);
|
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
|
/*! \name Queries
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue