Reference documentation for deal.II version 8.5.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 450 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 901 of file index_set.h.
|
inlineexplicit |
Construct an invalid accessor for the IndexSet.
Definition at line 908 of file index_set.h.
|
inlineprivate |
Private copy constructor.
Definition at line 954 of file index_set.h.
|
inline |
Number of elements in this interval.
Definition at line 913 of file index_set.h.
|
inline |
If true, we are pointing at a valid interval in the IndexSet.
Definition at line 920 of file index_set.h.
|
inline |
Return an iterator pointing at the first index in this interval.
Definition at line 926 of file index_set.h.
|
inline |
Return an iterator pointing directly after the last index in this interval.
Definition at line 933 of file index_set.h.
|
inline |
Return the index of the last index in this interval.
Definition at line 946 of file index_set.h.
|
inlineprivate |
Private copy operator.
Definition at line 962 of file index_set.h.
|
inlineprivate |
Test for equality, used by IntervalIterator.
Definition at line 971 of file index_set.h.
|
inlineprivate |
Smaller-than operator, used by IntervalIterator.
Definition at line 978 of file index_set.h.
|
inlineprivate |
Advance this accessor to point to the next interval in the index_set
.
Definition at line 985 of file index_set.h.
|
private |
Reference to the IndexSet.
Definition at line 516 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 522 of file index_set.h.