A simplex iterator for an indexed simplex set. More...
#include <iterator>
Go to the source code of this file.
Classes | |
class | SimplexIterator< ISS > |
A simplex iterator for a mesh. More... | |
Functions | |
template<class ISS > | |
bool | operator== (const SimplexIterator< ISS > &x, const SimplexIterator< ISS > &y) |
Return true if the iterators have a handle to the same index. | |
template<class ISS > | |
bool | operator!= (const SimplexIterator< ISS > &x, const SimplexIterator< ISS > &y) |
Return true if the iterators do not have a handle to the same index. | |
template<class ISS > | |
bool | operator< (const SimplexIterator< ISS > &x, const SimplexIterator< ISS > &y) |
Return true if the index of x precedes that of y . | |
template<class ISS > | |
bool | operator> (const SimplexIterator< ISS > &x, const SimplexIterator< ISS > &y) |
Return true if the index of x follows that of y . | |
template<class ISS > | |
bool | operator<= (const SimplexIterator< ISS > &x, const SimplexIterator< ISS > &y) |
Return true if the index of x precedes or is equal to that of y . | |
template<class ISS > | |
bool | operator>= (const SimplexIterator< ISS > &x, const SimplexIterator< ISS > &y) |
Return true if the index of x follows or is equal to that of y . | |
template<class ISS > | |
SimplexIterator< ISS > ::difference_type | operator- (const SimplexIterator< ISS > &x, const SimplexIterator< ISS > &y) |
The difference of two iterators. | |
template<class ISS > | |
SimplexIterator< ISS > | operator+ (typename SimplexIterator< ISS >::difference_type n, const SimplexIterator< ISS > &i) |
Iterator advance. |
A simplex iterator for an indexed simplex set.