libMesh
Public Member Functions | Protected Member Functions | List of all members
libMesh::Predicates::not_null< T > Struct Template Reference

#include <single_predicates.h>

Inheritance diagram for libMesh::Predicates::not_null< T >:
[legend]

Public Member Functions

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

Protected Member Functions

virtual std::unique_ptr< predicate< T > > clone () const override
 

Detailed Description

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

Returns
true if the pointer is not nullptr.

Definition at line 88 of file single_predicates.h.

Member Function Documentation

◆ clone()

template<typename T >
virtual std::unique_ptr<predicate<T> > libMesh::Predicates::not_null< T >::clone ( ) const
inlineoverrideprotectedvirtual

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

Definition at line 93 of file single_predicates.h.

93 { return std::make_unique<not_null<T>>(*this); }

◆ operator()()

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

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

Definition at line 90 of file single_predicates.h.

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

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

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