$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 79 of file single_predicates.h.
| virtual predicate<T>* libMesh::Predicates::not_null< T >::clone | ( | ) | const [inline, protected, virtual] |
Reimplemented from libMesh::Predicates::is_null< T >.
Definition at line 84 of file single_predicates.h.
{ return new not_null<T>(*this); }
| virtual bool libMesh::Predicates::not_null< T >::operator() | ( | const T & | it | ) | const [inline, virtual] |
Reimplemented from libMesh::Predicates::is_null< T >.
Definition at line 81 of file single_predicates.h.
{ return !is_null<T>::operator()(it); }
friend struct abstract_multi_predicate< T > [friend, inherited] |
Definition at line 60 of file single_predicates.h.