$extrastylesheet
#include <single_predicates.h>

Public Member Functions | |
| not_pid (const processor_id_type p) | |
| virtual bool | operator() (const T &it) const |
Protected Member Functions | |
| virtual predicate< T > * | clone () const |
Protected Attributes | |
| const processor_id_type | _pid |
Friends | |
| struct | abstract_multi_predicate< T > |
Definition at line 225 of file single_predicates.h.
| libMesh::Predicates::not_pid< T >::not_pid | ( | const processor_id_type | p | ) | [inline] |
Definition at line 227 of file single_predicates.h.
: pid<T>(p) {}
| virtual predicate<T>* libMesh::Predicates::not_pid< T >::clone | ( | ) | const [inline, protected, virtual] |
Reimplemented from libMesh::Predicates::pid< T >.
Definition at line 232 of file single_predicates.h.
{ return new not_pid<T>(*this); }
| virtual bool libMesh::Predicates::not_pid< T >::operator() | ( | const T & | it | ) | const [inline, virtual] |
Reimplemented from libMesh::Predicates::pid< T >.
Definition at line 229 of file single_predicates.h.
{ return !pid<T>::operator()(it); }
friend struct abstract_multi_predicate< T > [friend, inherited] |
Definition at line 60 of file single_predicates.h.
const processor_id_type libMesh::Predicates::pid< T >::_pid [protected, inherited] |
Definition at line 169 of file single_predicates.h.
Referenced by libMesh::Predicates::pid< T >::operator()().