![]() |
Reference documentation for deal.II version 9.2.0
|
Public Member Functions | |
| PredicateTemplate (const Predicate &predicate) | |
| virtual bool | operator() (const BaseIterator &bi) const override |
| virtual std::unique_ptr< PredicateBase > | clone () const override |
Public Member Functions inherited from FilteredIterator< BaseIterator >::PredicateBase | |
| virtual | ~PredicateBase ()=default |
Private Attributes | |
| const Predicate | predicate |
Actual implementation of the above abstract base class. Use a template parameter to denote the actual type of the predicate and store a copy of it. When the virtual function is called evaluate the given iterator with the stored copy of the predicate.
Definition at line 745 of file filtered_iterator.h.
|
inline |
Constructor. Take a predicate and store a copy of it.
Definition at line 1133 of file filtered_iterator.h.
|
overridevirtual |
Evaluate the iterator with the stored copy of the predicate.
Implements FilteredIterator< BaseIterator >::PredicateBase.
Definition at line 1142 of file filtered_iterator.h.
|
overridevirtual |
Generate a copy of this object, i.e. of the actual type of this pointer.
Implements FilteredIterator< BaseIterator >::PredicateBase.
Definition at line 1153 of file filtered_iterator.h.
|
private |
Copy of the predicate.
Definition at line 770 of file filtered_iterator.h.