libMesh::Predicates::not_subactive< T > Struct Template Reference

#include <single_predicates.h>

Inheritance diagram for libMesh::Predicates::not_subactive< T >:

Public Member Functions

virtual bool operator() (const T &it) const override
 

Protected Member Functions

virtual predicate< T > * clone () const override
 

Detailed Description

template<typename T>
struct libMesh::Predicates::not_subactive< T >

Returns
true when the pointer is not subactive.

Definition at line 175 of file single_predicates.h.

Member Function Documentation

◆ clone()

template<typename T>
virtual predicate<T>* libMesh::Predicates::not_subactive< T >::clone ( ) const
inlineoverrideprotectedvirtual

Reimplemented from libMesh::Predicates::subactive< T >.

Definition at line 180 of file single_predicates.h.

180 { return new not_subactive<T>(*this); }

◆ operator()()

template<typename T>
virtual bool libMesh::Predicates::not_subactive< T >::operator() ( const T &  it) const
inlineoverridevirtual

Reimplemented from libMesh::Predicates::subactive< T >.

Definition at line 177 of file single_predicates.h.

References libMesh::Predicates::subactive< T >::operator()().

177 { return !subactive<T>::operator()(it); }
virtual bool operator()(const T &it) const override

The documentation for this struct was generated from the following file: