Reference documentation for deal.II version 9.1.1
|
#include <deal.II/base/index_set.h>
Public Member Functions | |
IntervalAccessor (const IndexSet *idxset, const size_type range_idx) | |
IntervalAccessor (const IndexSet *idxset) | |
size_type | n_elements () const |
bool | is_valid () const |
ElementIterator | begin () const |
ElementIterator | end () const |
size_type | last () const |
Private Member Functions | |
IntervalAccessor (const IntervalAccessor &other) | |
IntervalAccessor & | operator= (const IntervalAccessor &other) |
bool | operator== (const IntervalAccessor &other) const |
bool | operator< (const IntervalAccessor &other) const |
void | advance () |
Private Attributes | |
const IndexSet * | index_set |
size_type | range_idx |
Dereferencing an IntervalIterator will return a reference to an object of this type. It allows access to a contiguous interval \([a,b[\) (also called a range) of the IndexSet being iterated over.
Definition at line 492 of file index_set.h.
|
inline |
Construct a valid accessor given an IndexSet and the index range_idx
of the range to point to.
Definition at line 991 of file index_set.h.
|
inlineexplicit |
Construct an invalid accessor for the IndexSet.
Definition at line 1003 of file index_set.h.
|
inlineprivate |
Private copy constructor.
Definition at line 1010 of file index_set.h.
|
inline |
Number of elements in this interval.
Definition at line 1022 of file index_set.h.
|
inline |
If true, we are pointing at a valid interval in the IndexSet.
Definition at line 1031 of file index_set.h.
|
inline |
Return an iterator pointing at the first index in this interval.
Definition at line 1039 of file index_set.h.
|
inline |
Return an iterator pointing directly after the last index in this interval.
Definition at line 1048 of file index_set.h.
|
inline |
Return the index of the last index in this interval.
Definition at line 1062 of file index_set.h.
|
inlineprivate |
Private copy operator.
Definition at line 1072 of file index_set.h.
|
inlineprivate |
Test for equality, used by IntervalIterator.
Definition at line 1085 of file index_set.h.
|
inlineprivate |
Smaller-than operator, used by IntervalIterator.
Definition at line 1097 of file index_set.h.
|
inlineprivate |
Advance this accessor to point to the next interval in the index_set
.
Definition at line 1108 of file index_set.h.
|
private |
Reference to the IndexSet.
Definition at line 567 of file index_set.h.
|
private |
Index into index_set.ranges[]. Set to numbers::invalid_dof_index if invalid or the end iterator.
Definition at line 573 of file index_set.h.