![]() |
Reference documentation for deal.II version 8.5.1
|
#include <deal.II/lac/full_matrix.h>
Public Member Functions | |
| const_iterator (const FullMatrix< number > *matrix, const size_type row, const size_type col) | |
| 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 150 of file full_matrix.h.
| FullMatrix< number >::const_iterator::const_iterator | ( | const FullMatrix< number > * | matrix, |
| const size_type | row, | ||
| const size_type | col | ||
| ) |
Constructor.
| const_iterator& FullMatrix< number >::const_iterator::operator++ | ( | ) |
Prefix increment.
| const_iterator& FullMatrix< number >::const_iterator::operator++ | ( | int | ) |
Postfix increment.
| const Accessor& FullMatrix< number >::const_iterator::operator* | ( | ) | const |
Dereferencing operator.
| const Accessor* FullMatrix< number >::const_iterator::operator-> | ( | ) | const |
Dereferencing operator.
| bool FullMatrix< number >::const_iterator::operator== | ( | const const_iterator & | ) | const |
Comparison. True, if both iterators point to the same matrix position.
| bool FullMatrix< number >::const_iterator::operator!= | ( | const const_iterator & | ) | const |
Inverse of ==.
| bool FullMatrix< number >::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 FullMatrix< number >::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 205 of file full_matrix.h.
1.8.13