$extrastylesheet
#include <single_predicates.h>

Public Member Functions | |
| virtual | ~is_null () |
| virtual bool | operator() (const T &it) const |
Protected Member Functions | |
| virtual predicate< T > * | clone () const |
Friends | |
| struct | abstract_multi_predicate< T > |
Definition at line 68 of file single_predicates.h.
| virtual libMesh::Predicates::is_null< T >::~is_null | ( | ) | [inline, virtual] |
Definition at line 70 of file single_predicates.h.
{}
| virtual predicate<T>* libMesh::Predicates::is_null< T >::clone | ( | ) | const [inline, protected, virtual] |
Implements libMesh::Predicates::predicate< T >.
Reimplemented in libMesh::Predicates::not_null< T >.
Definition at line 74 of file single_predicates.h.
{ return new is_null<T>(*this); }
| virtual bool libMesh::Predicates::is_null< T >::operator() | ( | const T & | it | ) | const [inline, virtual] |
Implements libMesh::Predicates::predicate< T >.
Reimplemented in libMesh::Predicates::not_null< T >.
Definition at line 71 of file single_predicates.h.
{ return *it == NULL; }
friend struct abstract_multi_predicate< T > [friend, inherited] |
Definition at line 60 of file single_predicates.h.