$extrastylesheet
#include <single_predicates.h>

Public Member Functions | |
| semilocal_pid (const processor_id_type p) | |
| virtual | ~semilocal_pid () |
| 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 178 of file single_predicates.h.
| libMesh::Predicates::semilocal_pid< T >::semilocal_pid | ( | const processor_id_type | p | ) | [inline] |
Definition at line 181 of file single_predicates.h.
: _pid(p) {}
| virtual libMesh::Predicates::semilocal_pid< T >::~semilocal_pid | ( | ) | [inline, virtual] |
Definition at line 182 of file single_predicates.h.
{}
| virtual predicate<T>* libMesh::Predicates::semilocal_pid< T >::clone | ( | ) | const [inline, protected, virtual] |
Implements libMesh::Predicates::predicate< T >.
Definition at line 188 of file single_predicates.h.
{ return new semilocal_pid<T>(*this); }
| virtual bool libMesh::Predicates::semilocal_pid< T >::operator() | ( | const T & | it | ) | const [inline, virtual] |
Implements libMesh::Predicates::predicate< T >.
Definition at line 185 of file single_predicates.h.
References libMesh::Predicates::semilocal_pid< T >::_pid.
{ return (*it)->is_semilocal(_pid); }
friend struct abstract_multi_predicate< T > [friend, inherited] |
Definition at line 60 of file single_predicates.h.
const processor_id_type libMesh::Predicates::semilocal_pid< T >::_pid [protected] |
Definition at line 189 of file single_predicates.h.
Referenced by libMesh::Predicates::semilocal_pid< T >::operator()().