https://mooseframework.inl.gov
Public Member Functions | List of all members
MooseMeshElementConversionUtils::BCTupleKeyComp Struct Reference

#include <MooseMeshElementConversionUtils.h>

Public Member Functions

bool operator() (const libMesh::BoundaryInfo::BCTuple &s, dof_id_type i) const
 
bool operator() (dof_id_type i, const libMesh::BoundaryInfo::BCTuple &s) const
 

Detailed Description

Definition at line 19 of file MooseMeshElementConversionUtils.h.

Member Function Documentation

◆ operator()() [1/2]

bool MooseMeshElementConversionUtils::BCTupleKeyComp::operator() ( const libMesh::BoundaryInfo::BCTuple s,
dof_id_type  i 
) const
inline

Definition at line 21 of file MooseMeshElementConversionUtils.h.

22  {
23  return std::get<0>(s) < i;
24  }

◆ operator()() [2/2]

bool MooseMeshElementConversionUtils::BCTupleKeyComp::operator() ( dof_id_type  i,
const libMesh::BoundaryInfo::BCTuple s 
) const
inline

Definition at line 25 of file MooseMeshElementConversionUtils.h.

26  {
27  return i < std::get<0>(s);
28  }

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