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

#include <single_predicates.h>

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

Public Member Functions

virtual ~boundary_side ()=default
 
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::boundary_side< T >

Returns
side_on_boundary().

This predicate simply forwards the work of determining whether a particular side is on the boundary to the iterator itself, which has more information.

Definition at line 410 of file single_predicates.h.

Constructor & Destructor Documentation

◆ ~boundary_side()

template<typename T >
virtual libMesh::Predicates::boundary_side< T >::~boundary_side ( )
virtualdefault

Member Function Documentation

◆ clone()

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

Implements libMesh::Predicates::predicate< T >.

Definition at line 419 of file single_predicates.h.

419 { return std::make_unique<boundary_side<T>>(*this); }

◆ operator()()

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

Implements libMesh::Predicates::predicate< T >.

Definition at line 413 of file single_predicates.h.

414  {
415  return it.side_on_boundary();
416  }

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