Reference documentation for deal.II version 9.1.1
|
#include <deal.II/lac/filtered_matrix.h>
Public Member Functions | |
const_iterator (const FilteredMatrix< VectorType > *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 |
Standard-conforming iterator.
Definition at line 265 of file filtered_matrix.h.
|
inline |
Constructor.
Definition at line 629 of file filtered_matrix.h.
|
inline |
Prefix increment.
Definition at line 639 of file filtered_matrix.h.
const_iterator& FilteredMatrix< VectorType >::const_iterator::operator++ | ( | int | ) |
Postfix increment.
|
inline |
Dereferencing operator.
Definition at line 648 of file filtered_matrix.h.
|
inline |
Dereferencing operator.
Definition at line 656 of file filtered_matrix.h.
|
inline |
Comparison. True, if both iterators point to the same matrix position.
Definition at line 665 of file filtered_matrix.h.
|
inline |
Inverse of ==
.
Definition at line 675 of file filtered_matrix.h.
bool FilteredMatrix< VectorType >::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< VectorType >::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 325 of file filtered_matrix.h.