https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | Private Member Functions | List of all members
MooseMesh::const_face_info_iterator Struct Reference

The definition of the const_face_info_iterator struct. More...

#include <MooseMesh.h>

Inheritance diagram for MooseMesh::const_face_info_iterator:
[legend]

Public Types

typedef std::forward_iterator_tag iterator_category
 
typedef Type value_type
 
typedef std::ptrdiff_t difference_type
 
typedef PointerType pointer
 
typedef ReferenceType reference
 
typedef variant_filter_iterator< Predicate, Type, ReferenceType, PointerType, ConstType, ConstReferenceType, ConstPointerType > Iterator
 

Public Member Functions

template<typename PredType , typename IterType >
 const_face_info_iterator (const IterType &d, const IterType &e, const PredType &p)
 
 const_face_info_iterator (const MooseMesh::face_info_iterator &rhs)
 
ReferenceType operator* () const
 
PointerType operator-> () const
 
Iteratoroperator++ ()
 
const Iterator operator++ (int)
 
bool equal (const variant_filter_iterator &other) const
 
void swap (Iterator &lhs, Iterator &rhs)
 

Public Attributes

std::unique_ptr< IterBase > data
 
std::unique_ptr< IterBase > end
 
std::unique_ptr< PredBase > pred
 

Private Member Functions

void satisfy_predicate ()
 

Detailed Description

The definition of the const_face_info_iterator struct.

It is similar to the iterator above, but also provides an additional conversion-to-const ctor.

Definition at line 2100 of file MooseMesh.h.

Constructor & Destructor Documentation

◆ const_face_info_iterator() [1/2]

template<typename PredType , typename IterType >
MooseMesh::const_face_info_iterator::const_face_info_iterator ( const IterType &  d,
const IterType &  e,
const PredType &  p 
)
inline

Definition at line 2107 of file MooseMesh.h.

2108 : variant_filter_iterator<MeshBase::Predicate,
2109 const FaceInfo * const,
2110 const FaceInfo * const &,
2111 const FaceInfo * const *>(d, e, p)
2112 {
2113 }
This data structure is used to store geometric and variable related metadata about each cell face in ...
Definition FaceInfo.h:38

◆ const_face_info_iterator() [2/2]

MooseMesh::const_face_info_iterator::const_face_info_iterator ( const MooseMesh::face_info_iterator rhs)
inline

Definition at line 2117 of file MooseMesh.h.

2118 : variant_filter_iterator<MeshBase::Predicate,
2119 const FaceInfo * const,
2120 const FaceInfo * const &,
2121 const FaceInfo * const *>(rhs)
2122 {
2123 }

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