$extrastylesheet
#include <single_predicates.h>

Public Member Functions | |
| not_level (const unsigned int l) | |
| virtual bool | operator() (const T &it) const |
Protected Member Functions | |
| virtual predicate< T > * | clone () const |
Protected Attributes | |
| const unsigned int | _level |
Friends | |
| struct | abstract_multi_predicate< T > |
Definition at line 278 of file single_predicates.h.
| libMesh::Predicates::not_level< T >::not_level | ( | const unsigned int | l | ) | [inline] |
Definition at line 281 of file single_predicates.h.
: level<T>(l) {}
| virtual predicate<T>* libMesh::Predicates::not_level< T >::clone | ( | ) | const [inline, protected, virtual] |
Reimplemented from libMesh::Predicates::level< T >.
Definition at line 286 of file single_predicates.h.
{ return new not_level<T>(*this); }
| virtual bool libMesh::Predicates::not_level< T >::operator() | ( | const T & | it | ) | const [inline, virtual] |
Reimplemented from libMesh::Predicates::level< T >.
Definition at line 283 of file single_predicates.h.
{ return !level<T>::operator()(it); }
friend struct abstract_multi_predicate< T > [friend, inherited] |
Definition at line 60 of file single_predicates.h.
const unsigned int libMesh::Predicates::level< T >::_level [protected, inherited] |
Definition at line 270 of file single_predicates.h.
Referenced by libMesh::Predicates::level< T >::operator()().