mirror of https://github.com/CGAL/cgal
Spell check.
This commit is contained in:
parent
c9323b9a9f
commit
0d4a66304b
|
|
@ -40,7 +40,7 @@ The class \ccc{In_place_list<T,bool>} is a container quite similar
|
||||||
to \stl\ containers, with the advantage that it is able to handle the
|
to \stl\ containers, with the advantage that it is able to handle the
|
||||||
stored elements by reference instead of copying them. It is possible
|
stored elements by reference instead of copying them. It is possible
|
||||||
to delete an element only knowing its address and no iterator to it.
|
to delete an element only knowing its address and no iterator to it.
|
||||||
This used to simplify mutually pointered data structures like a halfedge
|
This used to simplify mutually pointed data structures like a halfedge
|
||||||
data structure for planar maps or polyhedral surfaces (the current design
|
data structure for planar maps or polyhedral surfaces (the current design
|
||||||
does not need this anymore). The usual iterators are also available.
|
does not need this anymore). The usual iterators are also available.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
its memory size is \ccc{N*sizeof(T)+o(N)}, where \ccc{N} is the maximum size
|
its memory size is \ccc{N*sizeof(T)+o(N)}, where \ccc{N} is the maximum size
|
||||||
that the container has had in its past history, its \ccc{capacity()}
|
that the container has had in its past history, its \ccc{capacity()}
|
||||||
(the memory of erased elements is not deallocated until destruction of the
|
(the memory of erased elements is not deallocated until destruction of the
|
||||||
container or a call to \ccc{clear()}). This container has been developped in
|
container or a call to \ccc{clear()}). This container has been developed in
|
||||||
order to store large graph-like data structures like the triangulation and
|
order to store large graph-like data structures like the triangulation and
|
||||||
the halfedge data structures.
|
the halfedge data structures.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -176,7 +176,7 @@
|
||||||
\ccHidden\ccMethod{const T& back() const;}{}
|
\ccHidden\ccMethod{const T& back() const;}{}
|
||||||
\ccHidden\ccMethod{const T& front() const;}{}
|
\ccHidden\ccMethod{const T& front() const;}{}
|
||||||
|
|
||||||
\ccMethod{allocator_type get_allocator() const;}{returns the alloctor.}
|
\ccMethod{allocator_type get_allocator() const;}{returns the allocator.}
|
||||||
|
|
||||||
%% +-----------------------------------+
|
%% +-----------------------------------+
|
||||||
\ccHeading{Insertion}
|
\ccHeading{Insertion}
|
||||||
|
|
|
||||||
|
|
@ -77,7 +77,7 @@ The \ccc{Multiset} class-template has three parameters:
|
||||||
\begin{itemize}
|
\begin{itemize}
|
||||||
\item \ccc{Type} --- the type of the stored elements.
|
\item \ccc{Type} --- the type of the stored elements.
|
||||||
\item \ccc{Compare} --- the comparison-functor type. This type should provide
|
\item \ccc{Compare} --- the comparison-functor type. This type should provide
|
||||||
the following opeator for comparing two \ccc{Type} elements, namely: \\
|
the following operator for comparing two \ccc{Type} elements, namely: \\
|
||||||
\ccc{Comparison_result operator() (const Type& t1, const Type& t2) const;}\\
|
\ccc{Comparison_result operator() (const Type& t1, const Type& t2) const;}\\
|
||||||
The \ccc{CGAL::Compare<Type>} functor is used by default. In this case,
|
The \ccc{CGAL::Compare<Type>} functor is used by default. In this case,
|
||||||
\ccc{Type} must support an equality operator (\ccc{operator==}) and a
|
\ccc{Type} must support an equality operator (\ccc{operator==}) and a
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue