Reference documentation for deal.II version 9.0.0
|
#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 448 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 923 of file index_set.h.
|
inlineexplicit |
Construct an invalid accessor for the IndexSet.
Definition at line 936 of file index_set.h.
|
inlineprivate |
Private copy constructor.
Definition at line 946 of file index_set.h.
|
inline |
Number of elements in this interval.
Definition at line 959 of file index_set.h.
|
inline |
If true, we are pointing at a valid interval in the IndexSet.
Definition at line 969 of file index_set.h.
|
inline |
Return an iterator pointing at the first index in this interval.
Definition at line 978 of file index_set.h.
|
inline |
Return an iterator pointing directly after the last index in this interval.
Definition at line 989 of file index_set.h.
|
inline |
Return the index of the last index in this interval.
Definition at line 1004 of file index_set.h.
|
inlineprivate |
Private copy operator.
Definition at line 1015 of file index_set.h.
|
inlineprivate |
Test for equality, used by IntervalIterator.
Definition at line 1028 of file index_set.h.
|
inlineprivate |
Smaller-than operator, used by IntervalIterator.
Definition at line 1039 of file index_set.h.
|
inlineprivate |
Advance this accessor to point to the next interval in the index_set
.
Definition at line 1049 of file index_set.h.
|
private |
Reference to the IndexSet.
Definition at line 514 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 520 of file index_set.h.