Public Member Functions | |
Iterator (const SparsityPattern *sp, const unsigned int row, const unsigned int index) | |
Iterator & | operator++ () |
Iterator | operator++ (int) |
const Accessor & | operator* () const |
const Accessor * | operator-> () const |
bool | operator== (const Iterator &) const |
bool | operator!= (const Iterator &) const |
bool | operator< (const Iterator &) const |
Private Attributes | |
Accessor | accessor |
internals::SparsityPatternIterators::Iterator::Iterator | ( | const SparsityPattern * | sp, | |
const unsigned int | row, | |||
const unsigned int | index | |||
) |
Constructor. Create an iterator into the sparsity pattern sp
for the given row and the index within it.
Iterator& internals::SparsityPatternIterators::Iterator::operator++ | ( | ) |
Prefix increment.
const Accessor& internals::SparsityPatternIterators::Iterator::operator* | ( | ) | const |
Dereferencing operator.
const Accessor* internals::SparsityPatternIterators::Iterator::operator-> | ( | ) | const |
Dereferencing operator.
Comparison. True, if both iterators point to the same matrix position.
Inverse of ==
.
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.
This function is only valid if both iterators point into the same matrix.
Store an object of the accessor class.