![]() |
Reference documentation for deal.II version 8.1.0
|
#include <filtered_matrix.h>
Public Member Functions | |
const_iterator (const FilteredMatrix< VECTOR > *matrix, const size_type index) | |
const_iterator & | operator++ () |
const_iterator & | operator++ (int) |
const Accessor & | operator* () const |
const Accessor * | operator-> () const |
bool | operator== (const const_iterator &) const |
bool | operator!= (const const_iterator &) const |
bool | operator< (const const_iterator &) const |
bool | operator> (const const_iterator &) const |
Private Attributes | |
Accessor | accessor |
STL conforming iterator.
Definition at line 279 of file filtered_matrix.h.
|
inline |
Constructor.
Definition at line 723 of file filtered_matrix.h.
|
inline |
Prefix increment.
Definition at line 735 of file filtered_matrix.h.
const_iterator& FilteredMatrix< VECTOR >::const_iterator::operator++ | ( | int | ) |
Postfix increment.
|
inline |
Dereferencing operator.
Definition at line 745 of file filtered_matrix.h.
|
inline |
Dereferencing operator.
Definition at line 754 of file filtered_matrix.h.
|
inline |
Comparison. True, if both iterators point to the same matrix position.
Definition at line 764 of file filtered_matrix.h.
|
inline |
Inverse of ==
.
Definition at line 775 of file filtered_matrix.h.
bool FilteredMatrix< VECTOR >::const_iterator::operator< | ( | const const_iterator & | ) | const |
Comparison operator. Result is true if either the first row number is smaller or if the row numbers are equal and the first index is smaller.
bool FilteredMatrix< VECTOR >::const_iterator::operator> | ( | const const_iterator & | ) | const |
Comparison operator. Compares just the other way around than the operator above.
|
private |
Store an object of the accessor class.
Definition at line 341 of file filtered_matrix.h.