CGAL 5.4 - STL Extensions for CGAL
|
#include <CGAL/iterator.h>
The class Const_oneset_iterator
defines a RandomAccessIterator
that always refers to a copy of a specific object of type T
.
Creation | |
Const_oneset_iterator (T &t) | |
creates an iterator that always refers to some copy of t . More... | |
CGAL::Const_oneset_iterator< T >::Const_oneset_iterator | ( | T & | t | ) |
creates an iterator that always refers to some copy of t
.
The copy is constructed by invoking T
's copy constructor and remains constant during the lifetime of the iterator.