$extrastylesheet
#include <single_predicates.h>

Public Member Functions | |
| virtual bool | operator() (const T &it) const |
Protected Member Functions | |
| virtual predicate< T > * | clone () const |
Friends | |
| struct | abstract_multi_predicate< T > |
Definition at line 101 of file single_predicates.h.
| virtual predicate<T>* libMesh::Predicates::not_active< T >::clone | ( | ) | const [inline, protected, virtual] |
Reimplemented from libMesh::Predicates::active< T >.
Definition at line 106 of file single_predicates.h.
{ return new not_active<T>(*this); }
| virtual bool libMesh::Predicates::not_active< T >::operator() | ( | const T & | it | ) | const [inline, virtual] |
Reimplemented from libMesh::Predicates::active< T >.
Definition at line 103 of file single_predicates.h.
{ return !active<T>::operator()(it); }
friend struct abstract_multi_predicate< T > [friend, inherited] |
Definition at line 60 of file single_predicates.h.